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 TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCardTwo';
import ContactFaq from '@/components/sections/contact/ContactFaq';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { Building2, Calendar, Leaf, MapPin, Zap } from 'lucide-react';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Building2, Calendar, Leaf, MapPin, Zap, Twitter, Linkedin, Mail, Phone } from 'lucide-react';
export default function LandingPage() {
return (
@@ -214,43 +214,16 @@ export default function LandingPage() {
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "Navigation", items: [
{ label: "Home", href: "#hero" },
{ label: "About", href: "#about" },
{ label: "Properties", href: "#properties" },
{ 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: "#" }
]
}
<FooterCard
logoText="Orlická Rezidence"
copyrightText="© 2025 Orlická Rezidence. All rights reserved. Luxury Residential Development in Jaroměř, Czech Republic"
socialLinks={[
{ icon: Mail, href: "mailto:info@orlicka-rezidence.cz", ariaLabel: "Email us" },
{ icon: Phone, href: "tel:+420326123456", ariaLabel: "Call us" },
{ icon: Linkedin, href: "https://linkedin.com/company/orlicka-rezidence", ariaLabel: "LinkedIn" }
]}
bottomLeftText="© 2025 Orlická Rezidence. All rights reserved."
bottomRightText="Luxury Residential Development in Jaroměř"
/>
</div>
</ThemeProvider>
);
}
}