Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| ec891dc56c | |||
| 7758e91a06 | |||
| 7bae43d8b5 |
@@ -7,7 +7,6 @@ import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/F
|
|||||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||||
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
import ContactCenter from "@/components/sections/contact/ContactCenter";
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import {
|
import {
|
||||||
Layout,
|
Layout,
|
||||||
@@ -92,8 +91,7 @@ export default function HomePage() {
|
|||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
brandName="VintDragon"
|
brandName="VintDragon"
|
||||||
button={{
|
button={{
|
||||||
text: "Book Strategy Call", href: "/contact"
|
text: "Book Strategy Call", href: "/contact"}}
|
||||||
}}
|
|
||||||
animateOnLoad={true}
|
animateOnLoad={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -339,11 +337,67 @@ export default function HomePage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<footer className="relative w-full bg-black border-t border-white/10">
|
||||||
columns={footerColumns}
|
<div className="mx-auto px-4 py-16 max-w-7xl">
|
||||||
logoText="VintDragon"
|
<div className="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
|
||||||
copyrightText="© 2025 VintDragon. Driving Business Growth Through Digital Excellence."
|
<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>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -5,7 +5,6 @@ import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloating
|
|||||||
import HeroCentered from "@/components/sections/hero/HeroCentered";
|
import HeroCentered from "@/components/sections/hero/HeroCentered";
|
||||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
|
||||||
import Link from "next/link";
|
import Link from "next/link";
|
||||||
import {
|
import {
|
||||||
TrendingUp,
|
TrendingUp,
|
||||||
@@ -77,8 +76,7 @@ export default function PortfolioPage() {
|
|||||||
navItems={navItems}
|
navItems={navItems}
|
||||||
brandName="VintDragon"
|
brandName="VintDragon"
|
||||||
button={{
|
button={{
|
||||||
text: "Book Strategy Call", href: "/contact"
|
text: "Book Strategy Call", href: "/contact"}}
|
||||||
}}
|
|
||||||
animateOnLoad={true}
|
animateOnLoad={true}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -175,11 +173,67 @@ export default function PortfolioPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterBase
|
<footer className="relative w-full bg-black border-t border-white/10">
|
||||||
columns={footerColumns}
|
<div className="mx-auto px-4 py-16 max-w-7xl">
|
||||||
logoText="VintDragon"
|
<div className="grid grid-cols-1 md:grid-cols-4 gap-8 mb-12">
|
||||||
copyrightText="© 2025 VintDragon. Driving Business Growth Through Digital Excellence."
|
<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>
|
</div>
|
||||||
</ThemeProvider>
|
</ThemeProvider>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user