add portfolio section
This commit is contained in:
parent
59a5a93869
commit
1663d1628a
2 changed files with 20 additions and 0 deletions
|
|
@ -2,6 +2,7 @@ import Hero from "../components/Hero";
|
||||||
import About from "../components/About";
|
import About from "../components/About";
|
||||||
import Skills from "../components/Skills";
|
import Skills from "../components/Skills";
|
||||||
import Contact from "../components/Contact";
|
import Contact from "../components/Contact";
|
||||||
|
import Portfolio from "../components/Portfolio";
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
|
|
@ -9,6 +10,7 @@ export default function Home() {
|
||||||
<Hero />
|
<Hero />
|
||||||
<About />
|
<About />
|
||||||
<Skills />
|
<Skills />
|
||||||
|
<Portfolio />
|
||||||
<Contact />
|
<Contact />
|
||||||
</section>
|
</section>
|
||||||
);
|
);
|
||||||
|
|
|
||||||
18
src/components/Portfolio.tsx
Normal file
18
src/components/Portfolio.tsx
Normal file
|
|
@ -0,0 +1,18 @@
|
||||||
|
export default function Portfolio() {
|
||||||
|
return (
|
||||||
|
<section
|
||||||
|
id="portfolio"
|
||||||
|
className="relative py-6 px-4 md:px-6 max-w-5xl mx-auto scroll-mt-15"
|
||||||
|
>
|
||||||
|
{/* Title */}
|
||||||
|
<div className="mb-4 space-y-1">
|
||||||
|
<p className="text-xs font-mono text-blue-500 tracking-wider uppercase">
|
||||||
|
// 03. Projects
|
||||||
|
</p>
|
||||||
|
<h2 className="text-3xl font-bold text-white tracking-tight">
|
||||||
|
Portfolio<span className="text-blue-500">.</span>
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
);
|
||||||
|
}
|
||||||
Loading…
Reference in a new issue