6 Commits

Author SHA1 Message Date
7fb31a5254 Update src/app/page.tsx 2026-03-08 00:56:37 +00:00
034375ab78 Merge version_4 into main
Merge version_4 into main
2026-03-08 00:54:11 +00:00
493d36bb90 Update src/app/page.tsx 2026-03-08 00:54:07 +00:00
954a9ce593 Update src/app/layout.tsx 2026-03-08 00:54:07 +00:00
88d9554bc6 Merge version_3 into main
Merge version_3 into main
2026-03-08 00:52:46 +00:00
31d8dafe78 Merge version_3 into main
Merge version_3 into main
2026-03-08 00:51:47 +00:00
2 changed files with 26 additions and 1400 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -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 } from "lucide-react";
import { Sparkles, Twitter, Linkedin, Github, Instagram, Briefcase, Mail, FileText } from "lucide-react";
export default function Home() {
return (
@@ -34,6 +34,12 @@ export default function Home() {
<HeroPersonalLinks
background={{ variant: "plain" }}
title="Break Point"
socialLinks={[
{ icon: Twitter, label: "Twitter", href: "https://twitter.com" },
{ icon: Linkedin, label: "LinkedIn", href: "https://linkedin.com" },
{ icon: Github, label: "GitHub", href: "https://github.com" },
{ icon: Instagram, label: "Instagram", href: "https://instagram.com" },
]}
linkCards={[
{
icon: Sparkles,
@@ -41,9 +47,27 @@ 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"
},
},
]}
/>
</div>
</ThemeProvider>
);
}
}