Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7fb31a5254 | |||
| 034375ab78 | |||
| 493d36bb90 | |||
| 954a9ce593 | |||
| 88d9554bc6 | |||
| 31d8dafe78 |
1398
src/app/layout.tsx
1398
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
@@ -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>
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user