Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Project-Structure #9

Merged
merged 1 commit into from
Oct 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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;
Loading