From 7fb31a5254afa70deb05bfe5296f2063aa1998c6 Mon Sep 17 00:00:00 2001 From: bender Date: Sun, 8 Mar 2026 00:56:37 +0000 Subject: [PATCH] Update src/app/page.tsx --- src/app/page.tsx | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index adf9a0e..b904a70 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -3,7 +3,7 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import HeroPersonalLinks from "@/components/sections/hero/HeroPersonalLinks"; -import { Sparkles, Twitter, Linkedin, Github, Instagram } from "lucide-react"; +import { Sparkles, Twitter, Linkedin, Github, Instagram, Briefcase, Mail, FileText } from "lucide-react"; export default function Home() { return ( @@ -47,6 +47,24 @@ export default function Home() { text: "Learn More", href: "/about" }, }, + { + icon: Briefcase, + title: "Our Portfolio", description: "Explore our latest projects and case studies", button: { + text: "View Work", href: "/portfolio" + }, + }, + { + icon: FileText, + title: "Services", description: "Discover what we offer and how we can help", button: { + text: "See Services", href: "/services" + }, + }, + { + icon: Mail, + title: "Get in Touch", description: "Let's talk about your next project", button: { + text: "Contact Us", href: "/contact" + }, + }, ]} /> -- 2.49.1