Skip to content

Commit

Permalink
created components and base structure
Browse files Browse the repository at this point in the history
  • Loading branch information
El1an3 committed Apr 20, 2024
1 parent 6b2f490 commit 8979b66
Show file tree
Hide file tree
Showing 16 changed files with 69 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
"react-dom": "^18.2.0",
"styled-components": "^6.1.8"
},
"devDependencies": {
"@types/react": "^18.2.15",
Expand Down
26 changes: 25 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
import { Happenings } from "./components/Happenings";
import { Header } from "./components/Header";
import { About } from "./components/About";
import { Philosophy } from "./components/Philosophy";
import { Start } from "./components/Start";
import { Yogis } from "./components/Yogis";
import { Quote } from "./components/Quote";
import { FAQ } from "./components/FAQ";
import { Form } from "./components/Form";
import { Footer } from "./components/Footer";

export const App = () => {
return <div>Find me in src/app.jsx!</div>;
return (
<div>
<Header />
<About />
<Philosophy />
<Yogis />
<Happenings />
<Start />
<Quote />
<FAQ />
<Form />
<Footer />
</div>
);
};
3 changes: 3 additions & 0 deletions src/components/About.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const About = () => {
return <div>About</div>;
};
3 changes: 3 additions & 0 deletions src/components/FAQ.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const FAQ = () => {
return <div>FAQ</div>;
};
3 changes: 3 additions & 0 deletions src/components/Footer.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const Footer = () => {
return <div>Footer</div>;
};
3 changes: 3 additions & 0 deletions src/components/Form.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const Form = () => {
return <div>Form</div>;
};
3 changes: 3 additions & 0 deletions src/components/Happenings.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const Happenings = () => {
return <div>Happenings</div>;
};
3 changes: 3 additions & 0 deletions src/components/Header.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const Header = () => {
return <div>Header</div>;
};
3 changes: 3 additions & 0 deletions src/components/Philosophy.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const Philosophy = () => {
return <div>Philosophy</div>;
};
3 changes: 3 additions & 0 deletions src/components/Quote.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const Quote = () => {
return <div>Quote</div>;
};
3 changes: 3 additions & 0 deletions src/components/Start.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const Start = () => {
return <div>Start</div>;
};
3 changes: 3 additions & 0 deletions src/components/Yogis.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const Yogis = () => {
return <div>Yogis</div>;
};
3 changes: 3 additions & 0 deletions src/reusables/Arrow.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const Arrow = () => {
return <div>Arrow</div>;
};
3 changes: 3 additions & 0 deletions src/reusables/Button.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const Button = () => {
return <div>Button</div>;
};
3 changes: 3 additions & 0 deletions src/reusables/Logo.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const Logo = () => {
return <div>Logo</div>;
};
3 changes: 3 additions & 0 deletions src/reusables/Socials.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export const Socials = () => {
return <div>Socials</div>;
};

0 comments on commit 8979b66

Please sign in to comment.