3 Commits

Author SHA1 Message Date
ec891dc56c Update src/app/portfolio/page.tsx 2026-03-05 18:15:39 +00:00
7758e91a06 Update src/app/page.tsx 2026-03-05 18:15:38 +00:00
7bae43d8b5 Merge version_4 into main
Merge version_4 into main
2026-03-05 18:12:18 +00:00
2 changed files with 124 additions and 16 deletions

View File

@@ -7,7 +7,6 @@ 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 FooterBase from "@/components/sections/footer/FooterBase";
import Link from "next/link";
import {
Layout,
@@ -92,8 +91,7 @@ export default function HomePage() {
navItems={navItems}
brandName="VintDragon"
button={{
text: "Book Strategy Call", href: "/contact"
}}
text: "Book Strategy Call", href: "/contact"}}
animateOnLoad={true}
/>
</div>
@@ -339,11 +337,67 @@ export default function HomePage() {
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={footerColumns}
logoText="VintDragon"
copyrightText="© 2025 VintDragon. Driving Business Growth Through Digital Excellence."
/>
<footer className="relative w-full bg-black border-t border-white/10">
<div className="mx-auto px-4 py-16 max-w-7xl">
<div className="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<div>
<h3 className="text-white font-semibold mb-4">Navigate</h3>
<ul className="space-y-2">
{footerColumns[0].items.map((item, idx) => (
<li key={idx}>
<a href={item.href} className="text-gray-400 hover:text-red-500 transition-colors text-sm">
{item.label}
</a>
</li>
))}
</ul>
</div>
<div>
<h3 className="text-white font-semibold mb-4">Services</h3>
<ul className="space-y-2">
{footerColumns[1].items.map((item, idx) => (
<li key={idx}>
<a href={item.href} className="text-gray-400 hover:text-red-500 transition-colors text-sm">
{item.label}
</a>
</li>
))}
</ul>
</div>
<div>
<h3 className="text-white font-semibold mb-4">Company</h3>
<ul className="space-y-2">
{footerColumns[2].items.map((item, idx) => (
<li key={idx}>
<a href={item.href} className="text-gray-400 hover:text-red-500 transition-colors text-sm">
{item.label}
</a>
</li>
))}
</ul>
</div>
<div>
<h3 className="text-white font-semibold mb-4">Legal</h3>
<ul className="space-y-2">
{footerColumns[3].items.map((item, idx) => (
<li key={idx}>
<a href={item.href} className="text-gray-400 hover:text-red-500 transition-colors text-sm">
{item.label}
</a>
</li>
))}
</ul>
</div>
</div>
<div className="border-t border-white/10 pt-8">
<div className="flex flex-col md:flex-row justify-between items-center">
<p className="text-gray-400 text-sm mb-4 md:mb-0">© 2025 VintDragon. Driving Business Growth Through Digital Excellence.</p>
<p className="text-gray-500 text-xs">Crafted with precision for modern SaaS businesses</p>
</div>
</div>
</div>
</footer>
</div>
</ThemeProvider>
);

View File

@@ -5,7 +5,6 @@ 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 FooterBase from "@/components/sections/footer/FooterBase";
import Link from "next/link";
import {
TrendingUp,
@@ -77,8 +76,7 @@ export default function PortfolioPage() {
navItems={navItems}
brandName="VintDragon"
button={{
text: "Book Strategy Call", href: "/contact"
}}
text: "Book Strategy Call", href: "/contact"}}
animateOnLoad={true}
/>
</div>
@@ -175,11 +173,67 @@ export default function PortfolioPage() {
</div>
<div id="footer" data-section="footer">
<FooterBase
columns={footerColumns}
logoText="VintDragon"
copyrightText="© 2025 VintDragon. Driving Business Growth Through Digital Excellence."
/>
<footer className="relative w-full bg-black border-t border-white/10">
<div className="mx-auto px-4 py-16 max-w-7xl">
<div className="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
<div>
<h3 className="text-white font-semibold mb-4">Navigate</h3>
<ul className="space-y-2">
{footerColumns[0].items.map((item, idx) => (
<li key={idx}>
<a href={item.href} className="text-gray-400 hover:text-red-500 transition-colors text-sm">
{item.label}
</a>
</li>
))}
</ul>
</div>
<div>
<h3 className="text-white font-semibold mb-4">Services</h3>
<ul className="space-y-2">
{footerColumns[1].items.map((item, idx) => (
<li key={idx}>
<a href={item.href} className="text-gray-400 hover:text-red-500 transition-colors text-sm">
{item.label}
</a>
</li>
))}
</ul>
</div>
<div>
<h3 className="text-white font-semibold mb-4">Company</h3>
<ul className="space-y-2">
{footerColumns[2].items.map((item, idx) => (
<li key={idx}>
<a href={item.href} className="text-gray-400 hover:text-red-500 transition-colors text-sm">
{item.label}
</a>
</li>
))}
</ul>
</div>
<div>
<h3 className="text-white font-semibold mb-4">Legal</h3>
<ul className="space-y-2">
{footerColumns[3].items.map((item, idx) => (
<li key={idx}>
<a href={item.href} className="text-gray-400 hover:text-red-500 transition-colors text-sm">
{item.label}
</a>
</li>
))}
</ul>
</div>
</div>
<div className="border-t border-white/10 pt-8">
<div className="flex flex-col md:flex-row justify-between items-center">
<p className="text-gray-400 text-sm mb-4 md:mb-0">© 2025 VintDragon. Driving Business Growth Through Digital Excellence.</p>
<p className="text-gray-500 text-xs">Crafted with precision for modern SaaS businesses</p>
</div>
</div>
</div>
</footer>
</div>
</ThemeProvider>
);