Update src/app/page.tsx

This commit is contained in:
2026-03-21 00:31:04 +00:00
parent a61853c4df
commit f15758c71e

View File

@@ -9,6 +9,7 @@ import MetricCardFourteen from '@/components/sections/metrics/MetricCardFourteen
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
import { Dumbbell, Shield, User, Users, Sparkles, Zap } from 'lucide-react';
import Image from 'next/image';
export default function LandingPage() {
return (
@@ -33,7 +34,7 @@ export default function LandingPage() {
{ name: "Horarios", id: "schedule" },
{ name: "Contacto", id: "contact" }
]}
brandName="GYM ZONA FIT"
brandName={<Image src="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BEPHHr1GqdbStzTS4bfLBeMK4N/uploaded-1774053031398-04lxkkq2.png" alt="GYM ZONA FIT" width={200} height={80} style={{ objectFit: 'contain' }} />}
bottomLeftText="Bogotá, Colombia"
bottomRightText="info@zonafitgym.com"
/>
@@ -189,4 +190,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}