Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9fea03dd53 | |||
| 68eeea574d | |||
| 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 { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen";
|
||||||
import HeroPersonalLinks from "@/components/sections/hero/HeroPersonalLinks";
|
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() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
@@ -33,7 +33,13 @@ export default function Home() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroPersonalLinks
|
<HeroPersonalLinks
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
title="Break Point"
|
title="Premium Web Design & Development"
|
||||||
|
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={[
|
linkCards={[
|
||||||
{
|
{
|
||||||
icon: Sparkles,
|
icon: Sparkles,
|
||||||
@@ -41,9 +47,27 @@ export default function Home() {
|
|||||||
text: "Learn More", href: "/about"
|
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>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user