|
1 | 1 | import Contact from '../components/Contact';
|
2 | 2 | import Container from '../components/Container';
|
| 3 | +import Footer from '../components/Footer'; |
3 | 4 | import HeroSection from '../components/HeroSection';
|
4 | 5 | import LanguageAndTool from '../components/LanguageAndTool';
|
5 | 6 | import RecentWork from '../components/RecentWork';
|
6 | 7 |
|
7 | 8 | const Home = () => {
|
8 | 9 | return (
|
9 |
| - <main className="bg-gray-50 dark:bg-dark-900"> |
10 |
| - <section |
11 |
| - id="hero" |
12 |
| - className="bg-[url('/src/assets/images/hero-pattern.svg')] bg-cover bg-no-repeat" |
13 |
| - > |
| 10 | + <> |
| 11 | + <main className="bg-gray-50 dark:bg-dark-900"> |
| 12 | + <section |
| 13 | + id="hero" |
| 14 | + className="bg-[url('/src/assets/images/hero-pattern.svg')] bg-cover bg-no-repeat" |
| 15 | + > |
| 16 | + <Container> |
| 17 | + <HeroSection /> |
| 18 | + </Container> |
| 19 | + </section> |
| 20 | + <section id="skills" className="pb-16"> |
| 21 | + <div className="bg-blue-400 pb-40 pt-24"> |
| 22 | + <h2 className="text-center font-serif text-3xl font-bold text-white drop-shadow-md lg:text-5xl"> |
| 23 | + Skills |
| 24 | + </h2> |
| 25 | + </div> |
| 26 | + <Container> |
| 27 | + <LanguageAndTool /> |
| 28 | + </Container> |
| 29 | + </section> |
| 30 | + <section className="pb-16 pt-24" id="projects"> |
| 31 | + <Container> |
| 32 | + <h2 className="mb-16 text-center font-serif text-3xl font-bold capitalize text-dark-900 drop-shadow-md dark:text-gray-50 lg:text-5xl"> |
| 33 | + My recent projects |
| 34 | + </h2> |
| 35 | + <RecentWork /> |
| 36 | + </Container> |
| 37 | + </section> |
| 38 | + <section id="contact" className="bg-lime-400 pb-16 pt-24"> |
| 39 | + <Container> |
| 40 | + <h2 className="mb-8 text-center font-serif text-3xl font-bold text-white drop-shadow-md lg:text-5xl"> |
| 41 | + Get in touch with me |
| 42 | + </h2> |
| 43 | + <Contact /> |
| 44 | + </Container> |
| 45 | + </section> |
| 46 | + </main> |
| 47 | + <footer className="bg-dark-900 pb-6 pt-24"> |
14 | 48 | <Container>
|
15 |
| - <HeroSection /> |
| 49 | + <Footer /> |
16 | 50 | </Container>
|
17 |
| - </section> |
18 |
| - <section id="skills" className="pb-16"> |
19 |
| - <div className="bg-blue-400 pb-40 pt-24"> |
20 |
| - <h2 className="text-center font-serif text-3xl font-bold text-white drop-shadow-md lg:text-5xl"> |
21 |
| - Skills |
22 |
| - </h2> |
23 |
| - </div> |
24 |
| - <Container> |
25 |
| - <LanguageAndTool /> |
26 |
| - </Container> |
27 |
| - </section> |
28 |
| - <section className="pb-16 pt-24" id="projects"> |
29 |
| - <Container> |
30 |
| - <h2 className="mb-16 text-center font-serif text-3xl font-bold capitalize text-dark-900 drop-shadow-md dark:text-gray-50 lg:text-5xl"> |
31 |
| - My recent projects |
32 |
| - </h2> |
33 |
| - <RecentWork /> |
34 |
| - </Container> |
35 |
| - </section> |
36 |
| - <section id="contact" className="bg-lime-400 pb-16 pt-24"> |
37 |
| - <Container> |
38 |
| - <h2 className="mb-8 text-center font-serif text-3xl font-bold text-white drop-shadow-md lg:text-5xl"> |
39 |
| - Get in touch with me |
40 |
| - </h2> |
41 |
| - <Contact /> |
42 |
| - </Container> |
43 |
| - </section> |
44 |
| - </main> |
| 51 | + </footer> |
| 52 | + </> |
45 | 53 | );
|
46 | 54 | };
|
47 | 55 |
|
|
0 commit comments