3 Commits

Author SHA1 Message Date
38094b207e Update src/app/page.tsx 2026-03-11 19:10:53 +00:00
3eee1756b0 Merge version_1 into main
Merge version_1 into main
2026-03-11 18:57:04 +00:00
9510eb3632 Merge version_1 into main
Merge version_1 into main
2026-03-11 18:56:41 +00:00

View File

@@ -9,8 +9,8 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven'; import MetricCardEleven from '@/components/sections/metrics/MetricCardEleven';
import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo'; import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import ContactFaq from '@/components/sections/contact/ContactFaq'; import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterSimple from '@/components/sections/footer/FooterSimple'; import FooterCard from '@/components/sections/footer/FooterCard';
import { Building2, Calendar, Leaf, MapPin, Zap } from 'lucide-react'; import { Building2, Calendar, Leaf, MapPin, Zap, Twitter, Linkedin, Mail, Phone } from 'lucide-react';
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -214,43 +214,16 @@ export default function LandingPage() {
</div> </div>
<div id="footer" data-section="footer"> <div id="footer" data-section="footer">
<FooterSimple <FooterCard
columns={[ logoText="Orlická Rezidence"
{ copyrightText="© 2025 Orlická Rezidence. All rights reserved. Luxury Residential Development in Jaroměř, Czech Republic"
title: "Navigation", items: [ socialLinks={[
{ label: "Home", href: "#hero" }, { icon: Mail, href: "mailto:info@orlicka-rezidence.cz", ariaLabel: "Email us" },
{ label: "About", href: "#about" }, { icon: Phone, href: "tel:+420326123456", ariaLabel: "Call us" },
{ label: "Properties", href: "#properties" }, { icon: Linkedin, href: "https://linkedin.com/company/orlicka-rezidence", ariaLabel: "LinkedIn" }
{ label: "Contact", href: "#contact" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "#" },
{ label: "Our Vision", href: "#" },
{ label: "Careers", href: "#" },
{ label: "Blog", href: "#" }
]
},
{
title: "Contact", items: [
{ label: "Email: info@orlicka-rezidence.cz", href: "#" },
{ label: "Phone: +420 326 123 456", href: "#" },
{ label: "Jaroměř, Czech Republic", href: "#" }
]
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" }
]
}
]} ]}
bottomLeftText="© 2025 Orlická Rezidence. All rights reserved."
bottomRightText="Luxury Residential Development in Jaroměř"
/> />
</div> </div>
</ThemeProvider> </ThemeProvider>
); );
} }