Merge version_4 into main #18

Merged
bender merged 3 commits from version_4 into main 2026-03-05 18:12:19 +00:00
3 changed files with 83 additions and 1437 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -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."
/>

View File

@@ -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."
/>