2 Commits

Author SHA1 Message Date
8b5828d1e5 Update src/app/page.tsx 2026-03-11 07:43:15 +00:00
06e3af00d1 Update src/app/page.tsx 2026-03-11 07:42:20 +00:00

View File

@@ -10,7 +10,7 @@ import TestimonialCardThirteen from '@/components/sections/testimonial/Testimoni
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import ContactSplit from '@/components/sections/contact/ContactSplit'; import ContactSplit from '@/components/sections/contact/ContactSplit';
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis'; import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
import { TrendingUp, Zap, Settings, Target, Sparkles, Mail, Facebook, Instagram, Quote } from 'lucide-react'; import { TrendingUp, Zap, Settings, Target, Sparkles, Mail, Facebook, Instagram, Share2, Quote } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -242,16 +242,17 @@ export default function LandingPage() {
}, },
{ {
items: [ items: [
{ label: "Los Angeles", href: "#" },
{ label: "Email", href: "mailto:growtables@gmail.com" }, { label: "Email", href: "mailto:growtables@gmail.com" },
{ label: "Phone", href: "tel:+1234567890" }, { label: "USA", href: "#" }
{ label: "Location", href: "#" }
] ]
}, },
{ {
items: [ items: [
{ label: "Facebook", href: "https://www.facebook.com/Growtables" }, { label: "Facebook", href: "https://www.facebook.com/Growtables" },
{ label: "Instagram", href: "https://www.instagram.com/growtables/" }, { label: "Instagram", href: "https://www.instagram.com/growtables/" },
{ label: "TikTok", href: "https://www.tiktok.com/@growtables?_r=1&_t=ZS-94arQEaleUe" } { label: "Share", href: "https://www.tiktok.com/@growtables?_r=1&_t=ZS-94arQEaleUe" },
{ label: "Email", href: "mailto:growtables@gmail.com" }
] ]
}, },
{ {
@@ -266,4 +267,4 @@ export default function LandingPage() {
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }