Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 1c098bae11 | |||
| b61df6e60d | |||
| 5c59b36ffd | |||
| 618aa3bbae |
1440
src/app/layout.tsx
1440
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
@@ -7,7 +7,7 @@ import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/F
|
||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import Link from "next/link";
|
||||
import {
|
||||
Layout,
|
||||
@@ -39,6 +39,41 @@ export default function HomePage() {
|
||||
{ name: "Process", id: "/process" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Navigate", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Expertise", href: "/why-vintdragon" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Cybersecurity", href: "/services" },
|
||||
{ label: "AI Solutions", href: "/services" },
|
||||
{ label: "Development", href: "/services" },
|
||||
{ label: "Consulting", href: "/services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/" },
|
||||
{ label: "Blog", href: "/" },
|
||||
{ label: "Careers", href: "/" },
|
||||
{ label: "Press", href: "/" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "/" },
|
||||
{ label: "Terms of Service", href: "/" },
|
||||
{ label: "Security", href: "/" },
|
||||
{ label: "Compliance", href: "/" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -304,7 +339,8 @@ export default function HomePage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
<FooterBase
|
||||
columns={footerColumns}
|
||||
logoText="VintDragon"
|
||||
copyrightText="© 2025 VintDragon. Driving Business Growth Through Digital Excellence."
|
||||
/>
|
||||
|
||||
@@ -5,7 +5,7 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating
|
||||
import HeroCentered from "@/components/sections/hero/HeroCentered";
|
||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||
import FooterCard from "@/components/sections/footer/FooterCard";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import Link from "next/link";
|
||||
import {
|
||||
TrendingUp,
|
||||
@@ -24,6 +24,41 @@ export default function PortfolioPage() {
|
||||
{ name: "Process", id: "/process" },
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Navigate", items: [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Expertise", href: "/why-vintdragon" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Services", items: [
|
||||
{ label: "Cybersecurity", href: "/services" },
|
||||
{ label: "AI Solutions", href: "/services" },
|
||||
{ label: "Development", href: "/services" },
|
||||
{ label: "Consulting", href: "/services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/" },
|
||||
{ label: "Blog", href: "/" },
|
||||
{ label: "Careers", href: "/" },
|
||||
{ label: "Press", href: "/" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "/" },
|
||||
{ label: "Terms of Service", href: "/" },
|
||||
{ label: "Security", href: "/" },
|
||||
{ label: "Compliance", href: "/" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="hover-bubble"
|
||||
@@ -140,7 +175,8 @@ export default function PortfolioPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterCard
|
||||
<FooterBase
|
||||
columns={footerColumns}
|
||||
logoText="VintDragon"
|
||||
copyrightText="© 2025 VintDragon. Driving Business Growth Through Digital Excellence."
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user