Compare commits
35 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ec891dc56c | |||
| 7758e91a06 | |||
| 7bae43d8b5 | |||
| 1c098bae11 | |||
| b61df6e60d | |||
| 5c59b36ffd | |||
| 618aa3bbae | |||
| 7b25ac9c2b | |||
| 901f8b4180 | |||
| df95c6a09c | |||
| 29555f4b01 | |||
| d113ec4ff1 | |||
| 8f478bbfaa | |||
| 72525533f0 | |||
| f43f62cc64 | |||
| d4534468d2 | |||
| fd6f17bc51 | |||
| 2bca1bc279 | |||
| b797efc6ee | |||
| a1593aea55 | |||
| 5fa2aa5de2 | |||
| f639e8144f | |||
| 5a56d05aba | |||
| c487845b6e | |||
| 448944d518 | |||
| af2dbb5dad | |||
| 97cd020e6c | |||
| 1c5f78c5f0 | |||
| eb069a1d88 | |||
| 269fc73c6d | |||
| 64206bc28d | |||
| e70d06dd2a | |||
| 1042ef7ad1 | |||
| 41833c94b9 | |||
| 63a71d693e |
1440
src/app/layout.tsx
1440
src/app/layout.tsx
File diff suppressed because it is too large
Load Diff
102
src/app/page.tsx
102
src/app/page.tsx
@@ -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 FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import Link from "next/link";
|
||||
import {
|
||||
Layout,
|
||||
@@ -40,30 +39,36 @@ export default function HomePage() {
|
||||
];
|
||||
|
||||
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: "Web Design & Development", href: "/services" },
|
||||
{ label: "Digital Marketing Strategy", href: "/services" },
|
||||
{ label: "SEO & Search Visibility", href: "/services" },
|
||||
{ label: "Paid Advertising", href: "/services" },
|
||||
{ label: "AI Optimization", href: "/services" },
|
||||
{ label: "Cybersecurity", href: "/services" },
|
||||
{ label: "AI Solutions", href: "/services" },
|
||||
{ label: "Development", href: "/services" },
|
||||
{ label: "Consulting", href: "/services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Portfolio", href: "/portfolio" },
|
||||
{ label: "Process", href: "#process" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ 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: "Cookie Policy", href: "#" },
|
||||
{ label: "Disclaimer", href: "#" },
|
||||
{ label: "Privacy Policy", href: "/" },
|
||||
{ label: "Terms of Service", href: "/" },
|
||||
{ label: "Security", href: "/" },
|
||||
{ label: "Compliance", href: "/" },
|
||||
],
|
||||
},
|
||||
];
|
||||
@@ -332,11 +337,68 @@ export default function HomePage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={footerColumns}
|
||||
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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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 FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import Link from "next/link";
|
||||
import {
|
||||
TrendingUp,
|
||||
@@ -25,30 +24,36 @@ export default function PortfolioPage() {
|
||||
];
|
||||
|
||||
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: "Web Design & Development", href: "/services" },
|
||||
{ label: "Digital Marketing Strategy", href: "/services" },
|
||||
{ label: "SEO & Search Visibility", href: "/services" },
|
||||
{ label: "Paid Advertising", href: "/services" },
|
||||
{ label: "AI Optimization", href: "/services" },
|
||||
{ label: "Cybersecurity", href: "/services" },
|
||||
{ label: "AI Solutions", href: "/services" },
|
||||
{ label: "Development", href: "/services" },
|
||||
{ label: "Consulting", href: "/services" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About Us", href: "/about" },
|
||||
{ label: "Portfolio", href: "/portfolio" },
|
||||
{ label: "Process", href: "#process" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
{ label: "Blog", href: "#" },
|
||||
{ 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: "Cookie Policy", href: "#" },
|
||||
{ label: "Disclaimer", href: "#" },
|
||||
{ label: "Privacy Policy", href: "/" },
|
||||
{ label: "Terms of Service", href: "/" },
|
||||
{ label: "Security", href: "/" },
|
||||
{ label: "Compliance", href: "/" },
|
||||
],
|
||||
},
|
||||
];
|
||||
@@ -168,11 +173,68 @@ export default function PortfolioPage() {
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseReveal
|
||||
columns={footerColumns}
|
||||
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>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user