We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dca12cc commit f033afeCopy full SHA for f033afe
3 files changed
app/page.tsx
@@ -1,5 +1,4 @@
1
import Hero from "@/components/Hero";
2
-import About from "@/components/About";
3
import Projects from "@/components/Projects";
4
import Contact from "@/components/Contact";
5
import Footer from "@/components/Footer";
@@ -8,7 +7,6 @@ export default function Home() {
8
7
return (
9
<main>
10
<Hero />
11
- <About />
12
<Projects />
13
<Contact />
14
<Footer />
components/About.tsx
components/Navbar.tsx
@@ -3,7 +3,6 @@
import { useState } from "react";
const links = [
6
- { label: "About", href: "#about" },
{ label: "Projects", href: "#projects" },
{ label: "Contact", href: "#contact" },
];
0 commit comments