Skip to content

Commit

Permalink
Merge pull request #9 from 202306-NEA-DZ-FEW/8-project-structure
Browse files Browse the repository at this point in the history
Project-Structure
  • Loading branch information
KatiaGhezali authored Oct 16, 2023
2 parents fa79272 + 74611fb commit b0972c8
Show file tree
Hide file tree
Showing 11 changed files with 77 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/components/Buttons/Buttons.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

function Buttons() {
return <div>Buttons</div>;
}

export default Buttons;
7 changes: 7 additions & 0 deletions src/components/FeaturedUniversities/FeaturedUniversities.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

function FeaturedUniversities() {
return <div>FeaturedUniversities</div>;
}

export default FeaturedUniversities;
7 changes: 7 additions & 0 deletions src/components/Footer/Footer.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

function Footer() {
return <div>Footer</div>;
}

export default Footer;
7 changes: 7 additions & 0 deletions src/components/HeroSection/HeroSection.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

function HeroSection() {
return <div>HeroSection</div>;
}

export default HeroSection;
7 changes: 7 additions & 0 deletions src/components/Language/Language.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

function Language() {
return <div>Language</div>;
}

export default Language;
7 changes: 7 additions & 0 deletions src/components/NavBar/NavBar.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

function NavBar() {
return <div>NavBar</div>;
}

export default NavBar;
7 changes: 7 additions & 0 deletions src/components/ProductCard/ProductCard.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

function ProductCard() {
return <div>ProductCard</div>;
}

export default ProductCard;
7 changes: 7 additions & 0 deletions src/components/Profile/Profile.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

function Profile() {
return <div>Profile</div>;
}

export default Profile;
7 changes: 7 additions & 0 deletions src/components/SearchBar/SearchBar.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

function SearchBar() {
return <div>SearchBar</div>;
}

export default SearchBar;
7 changes: 7 additions & 0 deletions src/components/TestimonialsSection/TestimonialsSection.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

function TestimonialsSection() {
return <div>TestimonialsSection</div>;
}

export default TestimonialsSection;
7 changes: 7 additions & 0 deletions src/components/UnderBar/UnderBar.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import React from "react";

function UnderBar() {
return <div>UnderBar</div>;
}

export default UnderBar;

0 comments on commit b0972c8

Please sign in to comment.