diff --git a/descriptive-text-presentation/.gitignore b/descriptive-text-presentation/.gitignore
new file mode 100644
index 00000000..4d29575d
--- /dev/null
+++ b/descriptive-text-presentation/.gitignore
@@ -0,0 +1,23 @@
+# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+
+# dependencies
+/node_modules
+/.pnp
+.pnp.js
+
+# testing
+/coverage
+
+# production
+/build
+
+# misc
+.DS_Store
+.env.local
+.env.development.local
+.env.test.local
+.env.production.local
+
+npm-debug.log*
+yarn-debug.log*
+yarn-error.log*
diff --git a/descriptive-text-presentation/README.md b/descriptive-text-presentation/README.md
new file mode 100644
index 00000000..58beeacc
--- /dev/null
+++ b/descriptive-text-presentation/README.md
@@ -0,0 +1,70 @@
+# Getting Started with Create React App
+
+This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).
+
+## Available Scripts
+
+In the project directory, you can run:
+
+### `npm start`
+
+Runs the app in the development mode.\
+Open [http://localhost:3000](http://localhost:3000) to view it in your browser.
+
+The page will reload when you make changes.\
+You may also see any lint errors in the console.
+
+### `npm test`
+
+Launches the test runner in the interactive watch mode.\
+See the section about [running tests](https://facebook.github.io/create-react-app/docs/running-tests) for more information.
+
+### `npm run build`
+
+Builds the app for production to the `build` folder.\
+It correctly bundles React in production mode and optimizes the build for the best performance.
+
+The build is minified and the filenames include the hashes.\
+Your app is ready to be deployed!
+
+See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.
+
+### `npm run eject`
+
+**Note: this is a one-way operation. Once you `eject`, you can't go back!**
+
+If you aren't satisfied with the build tool and configuration choices, you can `eject` at any time. This command will remove the single build dependency from your project.
+
+Instead, it will copy all the configuration files and the transitive dependencies (webpack, Babel, ESLint, etc) right into your project so you have full control over them. All of the commands except `eject` will still work, but they will point to the copied scripts so you can tweak them. At this point you're on your own.
+
+You don't have to ever use `eject`. The curated feature set is suitable for small and middle deployments, and you shouldn't feel obligated to use this feature. However we understand that this tool wouldn't be useful if you couldn't customize it when you are ready for it.
+
+## Learn More
+
+You can learn more in the [Create React App documentation](https://facebook.github.io/create-react-app/docs/getting-started).
+
+To learn React, check out the [React documentation](https://reactjs.org/).
+
+### Code Splitting
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/code-splitting](https://facebook.github.io/create-react-app/docs/code-splitting)
+
+### Analyzing the Bundle Size
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size](https://facebook.github.io/create-react-app/docs/analyzing-the-bundle-size)
+
+### Making a Progressive Web App
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app](https://facebook.github.io/create-react-app/docs/making-a-progressive-web-app)
+
+### Advanced Configuration
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/advanced-configuration](https://facebook.github.io/create-react-app/docs/advanced-configuration)
+
+### Deployment
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/deployment](https://facebook.github.io/create-react-app/docs/deployment)
+
+### `npm run build` fails to minify
+
+This section has moved here: [https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify](https://facebook.github.io/create-react-app/docs/troubleshooting#npm-run-build-fails-to-minify)
diff --git a/descriptive-text-presentation/package.json b/descriptive-text-presentation/package.json
new file mode 100644
index 00000000..7da5120c
--- /dev/null
+++ b/descriptive-text-presentation/package.json
@@ -0,0 +1,46 @@
+{
+ "name": "descriptive-text-presentation",
+ "version": "0.1.0",
+ "private": true,
+ "dependencies": {
+ "@testing-library/dom": "^10.4.1",
+ "@testing-library/jest-dom": "^6.9.1",
+ "@testing-library/react": "^16.3.0",
+ "@testing-library/user-event": "^13.5.0",
+ "react": "^19.2.0",
+ "react-dom": "^19.2.0",
+ "react-scripts": "5.0.1",
+ "web-vitals": "^2.1.4"
+ },
+ "scripts": {
+ "start": "react-scripts start",
+ "build": "react-scripts build",
+ "test": "react-scripts test",
+ "eject": "react-scripts eject"
+ },
+ "eslintConfig": {
+ "extends": [
+ "react-app",
+ "react-app/jest"
+ ]
+ },
+ "browserslist": {
+ "production": [
+ ">0.2%",
+ "not dead",
+ "not op_mini all"
+ ],
+ "development": [
+ "last 1 chrome version",
+ "last 1 firefox version",
+ "last 1 safari version"
+ ]
+ },
+ "devDependencies": {
+ "autoprefixer": "^10.4.22",
+ "postcss": "^8.5.6",
+ "postcss-flexbugs-fixes": "^5.0.2",
+ "postcss-preset-env": "^10.4.0",
+ "tailwindcss": "^3.4.1"
+ }
+}
diff --git a/descriptive-text-presentation/postcss.config.js b/descriptive-text-presentation/postcss.config.js
new file mode 100644
index 00000000..33ad091d
--- /dev/null
+++ b/descriptive-text-presentation/postcss.config.js
@@ -0,0 +1,6 @@
+module.exports = {
+ plugins: {
+ tailwindcss: {},
+ autoprefixer: {},
+ },
+}
diff --git a/descriptive-text-presentation/public/favicon.ico b/descriptive-text-presentation/public/favicon.ico
new file mode 100644
index 00000000..a11777cc
Binary files /dev/null and b/descriptive-text-presentation/public/favicon.ico differ
diff --git a/descriptive-text-presentation/public/index.html b/descriptive-text-presentation/public/index.html
new file mode 100644
index 00000000..aa069f27
--- /dev/null
+++ b/descriptive-text-presentation/public/index.html
@@ -0,0 +1,43 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ React App
+
+
+
+
+
+
+
diff --git a/descriptive-text-presentation/public/logo192.png b/descriptive-text-presentation/public/logo192.png
new file mode 100644
index 00000000..fc44b0a3
Binary files /dev/null and b/descriptive-text-presentation/public/logo192.png differ
diff --git a/descriptive-text-presentation/public/logo512.png b/descriptive-text-presentation/public/logo512.png
new file mode 100644
index 00000000..a4e47a65
Binary files /dev/null and b/descriptive-text-presentation/public/logo512.png differ
diff --git a/descriptive-text-presentation/public/manifest.json b/descriptive-text-presentation/public/manifest.json
new file mode 100644
index 00000000..080d6c77
--- /dev/null
+++ b/descriptive-text-presentation/public/manifest.json
@@ -0,0 +1,25 @@
+{
+ "short_name": "React App",
+ "name": "Create React App Sample",
+ "icons": [
+ {
+ "src": "favicon.ico",
+ "sizes": "64x64 32x32 24x24 16x16",
+ "type": "image/x-icon"
+ },
+ {
+ "src": "logo192.png",
+ "type": "image/png",
+ "sizes": "192x192"
+ },
+ {
+ "src": "logo512.png",
+ "type": "image/png",
+ "sizes": "512x512"
+ }
+ ],
+ "start_url": ".",
+ "display": "standalone",
+ "theme_color": "#000000",
+ "background_color": "#ffffff"
+}
diff --git a/descriptive-text-presentation/public/robots.txt b/descriptive-text-presentation/public/robots.txt
new file mode 100644
index 00000000..e9e57dc4
--- /dev/null
+++ b/descriptive-text-presentation/public/robots.txt
@@ -0,0 +1,3 @@
+# https://www.robotstxt.org/robotstxt.html
+User-agent: *
+Disallow:
diff --git a/descriptive-text-presentation/src/App.css b/descriptive-text-presentation/src/App.css
new file mode 100644
index 00000000..74b5e053
--- /dev/null
+++ b/descriptive-text-presentation/src/App.css
@@ -0,0 +1,38 @@
+.App {
+ text-align: center;
+}
+
+.App-logo {
+ height: 40vmin;
+ pointer-events: none;
+}
+
+@media (prefers-reduced-motion: no-preference) {
+ .App-logo {
+ animation: App-logo-spin infinite 20s linear;
+ }
+}
+
+.App-header {
+ background-color: #282c34;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ font-size: calc(10px + 2vmin);
+ color: white;
+}
+
+.App-link {
+ color: #61dafb;
+}
+
+@keyframes App-logo-spin {
+ from {
+ transform: rotate(0deg);
+ }
+ to {
+ transform: rotate(360deg);
+ }
+}
diff --git a/descriptive-text-presentation/src/App.js b/descriptive-text-presentation/src/App.js
new file mode 100644
index 00000000..4252956d
--- /dev/null
+++ b/descriptive-text-presentation/src/App.js
@@ -0,0 +1,393 @@
+import React, { useState } from 'react';
+import './App.css';
+
+function App() {
+ const [currentSlide, setCurrentSlide] = useState(0);
+
+ const slides = [
+ {
+ type: 'title',
+ title: 'Descriptive Text',
+ subtitle: 'A Comprehensive Guide',
+ supervisor: 'Supervised by Professor A.EL MAATOUKI',
+ editor: 'Edited by Douae Sadok'
+ },
+ {
+ type: 'team',
+ title: 'Group Members & Their Roles',
+ members: [
+ { name: 'Hiba Hadije', role: 'Definition and Purpose of Descriptive Text' },
+ { name: 'Sabrine Hliya', role: 'Structure of Descriptive Text (Identification + Detailed Description)' },
+ { name: 'Fatima Ezzahra Khouya', role: 'Types of Descriptive Text (Person, Place, Object, Animal, Event)' },
+ { name: 'Fatima Ezzahra Khouya & Sabrine Hliya', role: 'Language Features (Adjectives, Tenses, Linking Verbs, Sensory Words)' },
+ { name: 'Douae Sadok', role: 'Importance of Descriptive Writing & Conclusion' }
+ ]
+ },
+ {
+ type: 'content',
+ title: 'Definition',
+ icon: '🟡',
+ content: [
+ {
+ heading: 'What is Descriptive Text?',
+ text: 'A descriptive text is a kind of writing that describes a person, place, object, animal, or event in detail. Its goal is to make the reader see, hear, and feel what the writer is describing.'
+ }
+ ]
+ },
+ {
+ type: 'content',
+ title: 'Purpose',
+ icon: '🟡',
+ content: [
+ {
+ heading: 'Why Use Descriptive Text?',
+ text: 'The purpose of a descriptive text is to create a clear picture in the reader\'s mind and help them imagine the subject as if they were seeing it themselves.'
+ }
+ ]
+ },
+ {
+ type: 'structure',
+ title: 'Structure of Descriptive Text',
+ icon: '🔴',
+ structure: [
+ { step: '1. Introduction', desc: 'Introduction to the topic or character being described.' },
+ { step: '2. General Description', desc: 'General description of the topic or character, including general attributes and characteristics.' },
+ { step: '3. Details', desc: 'Description of specific details about the topic or character, such as physical or behavioral traits.' },
+ { step: '4. Conclusion', desc: 'Summary of the description or a comment on the topic or character.' }
+ ],
+ example: {
+ title: 'Example: Marrakech',
+ steps: [
+ { label: 'Introduction', text: 'Marrakech is one of the most beautiful cities in Morocco.' },
+ { label: 'General Description', text: 'Marrakech is a historic city, known for its authentic Arab architecture and hot climate.' },
+ { label: 'Details', text: 'Its narrow streets, bustling markets, and beautiful gardens make Marrakech a unique city.' },
+ { label: 'Conclusion', text: 'Marrakech is a city worth visiting, where visitors can enjoy its beauty and history.' }
+ ]
+ }
+ },
+ {
+ type: 'types',
+ title: 'Types of Descriptive Text',
+ icon: '🔴',
+ types: [
+ { type: 'Person', example: 'My friend is tall, and his smile is beautiful.' },
+ { type: 'Place', example: 'The garden is spacious and full of colorful flowers.' },
+ { type: 'Object', example: 'The book is large, and its cover is red.' },
+ { type: 'Animal', example: 'The cat is cute, and its eyes are green.' },
+ { type: 'Event', example: 'The party was fun, and everyone was dancing and singing.' }
+ ]
+ },
+ {
+ type: 'features',
+ title: 'Language Features',
+ icon: '🔴',
+ features: [
+ { feature: 'Adjectives', example: 'beautiful, tall, soft' },
+ { feature: 'Tenses', example: 'The garden was quiet / The sun is rising' },
+ { feature: 'Linking Verbs', example: 'He seems happy / The weather was mild' },
+ { feature: 'Sensory Words', example: 'The flowers smell sweet / The sound is quiet / The fabric feels soft' }
+ ]
+ },
+ {
+ type: 'characteristics',
+ title: 'Key Characteristics',
+ icon: '🔴',
+ characteristics: [
+ { title: 'Clarity', desc: 'Descriptive text should be clear and easy to understand, allowing the reader to visualize the scene or character.' },
+ { title: 'Accuracy', desc: 'Descriptive text should be accurate in its details, enabling the reader to form a clear picture.' },
+ { title: 'Vividness', desc: 'Descriptive text should be vivid and engaging, capturing the reader\'s attention and making them want to know more.' },
+ { title: 'Effective Word Choice', desc: 'Words should be used effectively to describe the scene or character, avoiding excessive description.' },
+ { title: 'Focus on Important Details', desc: 'Focus on the details that matter, helping the reader understand the scene or character.' }
+ ],
+ examples: [
+ 'Using descriptive adjectives like "beautiful", "strong", "fast"',
+ 'Using descriptive verbs like "runs", "jumps", "smiles"',
+ 'Using setting and time to describe the scene',
+ 'Using sensory details like "smell of flowers", "sound of birds"'
+ ]
+ },
+ {
+ type: 'importance',
+ title: 'Importance of Descriptive Writing',
+ icon: '🔴',
+ content: 'Descriptive writing is important because it brings ideas to life and helps readers clearly imagine what the writer is describing. By using vivid details and sensory language, it creates strong images, adds emotion, and makes the writing more engaging. It also improves storytelling and communication by making scenes, characters, and concepts easier to understand and more memorable.'
+ },
+ {
+ type: 'conclusion',
+ title: 'Conclusion',
+ icon: '🔴',
+ content: 'In conclusion, descriptive writing plays an essential role in helping readers visualize and understand the subject being described. By using clear structure, vivid language, and sensory details, a descriptive text can create strong images and make the information more memorable. Whether describing a person, place, object, animal, or event, effective descriptive writing allows the reader to feel closer to the scene and fully experience it through words.'
+ },
+ {
+ type: 'thankyou',
+ title: 'Thank You!',
+ subtitle: 'Questions?'
+ }
+ ];
+
+ const nextSlide = () => {
+ if (currentSlide < slides.length - 1) {
+ setCurrentSlide(currentSlide + 1);
+ }
+ };
+
+ const prevSlide = () => {
+ if (currentSlide > 0) {
+ setCurrentSlide(currentSlide - 1);
+ }
+ };
+
+ const goToSlide = (index) => {
+ setCurrentSlide(index);
+ };
+
+ const slide = slides[currentSlide];
+
+ return (
+
+
+
+
+ {slide.type === 'title' && (
+
+
+
+ {slide.title}
+
+
{slide.subtitle}
+
+
+
{slide.supervisor}
+
{slide.editor}
+
+
+ )}
+
+ {slide.type === 'team' && (
+
+
{slide.title}
+
+ {slide.members.map((member, idx) => (
+
+
+
+ {idx + 1}
+
+
+
{member.name}
+
{member.role}
+
+
+
+ ))}
+
+
+ )}
+
+ {slide.type === 'content' && (
+
+
+ {slide.icon}
+ {slide.title}
+
+
+ {slide.content.map((item, idx) => (
+
+
{item.heading}
+
{item.text}
+
+ ))}
+
+
+ )}
+
+ {slide.type === 'structure' && (
+
+
+ {slide.icon}
+ {slide.title}
+
+
+
+ {slide.structure.map((item, idx) => (
+
+
{item.step}
+
{item.desc}
+
+ ))}
+
+
+
{slide.example.title}
+
+ {slide.example.steps.map((step, idx) => (
+
+
{step.label}
+
{step.text}
+
+ ))}
+
+
+
+
+ )}
+
+ {slide.type === 'types' && (
+
+
+ {slide.icon}
+ {slide.title}
+
+
+ {slide.types.map((item, idx) => (
+
+
+ →
+ {item.type}
+
+
"{item.example}"
+
+ ))}
+
+
+ )}
+
+ {slide.type === 'features' && (
+
+
+ {slide.icon}
+ {slide.title}
+
+
+ {slide.features.map((item, idx) => (
+
+
+ →
+ {item.feature}
+
+
+ Example: {item.example}
+
+
+ ))}
+
+
+ )}
+
+ {slide.type === 'characteristics' && (
+
+
+ {slide.icon}
+ {slide.title}
+
+
+ {slide.characteristics.map((item, idx) => (
+
+
{item.title}
+
{item.desc}
+
+ ))}
+
+
Examples:
+
+ {slide.examples.map((example, idx) => (
+
+ •
+ {example}
+
+ ))}
+
+
+
+
+ )}
+
+ {slide.type === 'importance' && (
+
+
+ {slide.icon}
+ {slide.title}
+
+
+
{slide.content}
+
+
+ )}
+
+ {slide.type === 'conclusion' && (
+
+
+ {slide.icon}
+ {slide.title}
+
+
+
{slide.content}
+
+
+ )}
+
+ {slide.type === 'thankyou' && (
+
+
+ {slide.title}
+
+
{slide.subtitle}
+
🎓
+
+ )}
+
+
+
+
+
+
+ {slides.map((_, idx) => (
+
+
+
+
+
+
+ Slide {currentSlide + 1} of {slides.length}
+
+
+
+
+
Use arrow keys ← → or click buttons to navigate
+
+
+
+ );
+}
+
+export default App;
diff --git a/descriptive-text-presentation/src/App.test.js b/descriptive-text-presentation/src/App.test.js
new file mode 100644
index 00000000..1f03afee
--- /dev/null
+++ b/descriptive-text-presentation/src/App.test.js
@@ -0,0 +1,8 @@
+import { render, screen } from '@testing-library/react';
+import App from './App';
+
+test('renders learn react link', () => {
+ render();
+ const linkElement = screen.getByText(/learn react/i);
+ expect(linkElement).toBeInTheDocument();
+});
diff --git a/descriptive-text-presentation/src/index.css b/descriptive-text-presentation/src/index.css
new file mode 100644
index 00000000..17df0e7e
--- /dev/null
+++ b/descriptive-text-presentation/src/index.css
@@ -0,0 +1,17 @@
+@tailwind base;
+@tailwind components;
+@tailwind utilities;
+
+body {
+ margin: 0;
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
+ 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
+ sans-serif;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+code {
+ font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
+ monospace;
+}
diff --git a/descriptive-text-presentation/src/index.js b/descriptive-text-presentation/src/index.js
new file mode 100644
index 00000000..d563c0fb
--- /dev/null
+++ b/descriptive-text-presentation/src/index.js
@@ -0,0 +1,17 @@
+import React from 'react';
+import ReactDOM from 'react-dom/client';
+import './index.css';
+import App from './App';
+import reportWebVitals from './reportWebVitals';
+
+const root = ReactDOM.createRoot(document.getElementById('root'));
+root.render(
+
+
+
+);
+
+// If you want to start measuring performance in your app, pass a function
+// to log results (for example: reportWebVitals(console.log))
+// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
+reportWebVitals();
diff --git a/descriptive-text-presentation/src/logo.svg b/descriptive-text-presentation/src/logo.svg
new file mode 100644
index 00000000..9dfc1c05
--- /dev/null
+++ b/descriptive-text-presentation/src/logo.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/descriptive-text-presentation/src/reportWebVitals.js b/descriptive-text-presentation/src/reportWebVitals.js
new file mode 100644
index 00000000..5253d3ad
--- /dev/null
+++ b/descriptive-text-presentation/src/reportWebVitals.js
@@ -0,0 +1,13 @@
+const reportWebVitals = onPerfEntry => {
+ if (onPerfEntry && onPerfEntry instanceof Function) {
+ import('web-vitals').then(({ getCLS, getFID, getFCP, getLCP, getTTFB }) => {
+ getCLS(onPerfEntry);
+ getFID(onPerfEntry);
+ getFCP(onPerfEntry);
+ getLCP(onPerfEntry);
+ getTTFB(onPerfEntry);
+ });
+ }
+};
+
+export default reportWebVitals;
diff --git a/descriptive-text-presentation/src/setupTests.js b/descriptive-text-presentation/src/setupTests.js
new file mode 100644
index 00000000..8f2609b7
--- /dev/null
+++ b/descriptive-text-presentation/src/setupTests.js
@@ -0,0 +1,5 @@
+// jest-dom adds custom jest matchers for asserting on DOM nodes.
+// allows you to do things like:
+// expect(element).toHaveTextContent(/react/i)
+// learn more: https://github.com/testing-library/jest-dom
+import '@testing-library/jest-dom';
diff --git a/descriptive-text-presentation/tailwind.config.js b/descriptive-text-presentation/tailwind.config.js
new file mode 100644
index 00000000..3989d8c7
--- /dev/null
+++ b/descriptive-text-presentation/tailwind.config.js
@@ -0,0 +1,8 @@
+module.exports = {
+ content: ["./src/**/*.{js,jsx,ts,tsx}"],
+ darkMode: 'class',
+ theme: {
+ extend: {},
+ },
+ plugins: [],
+}