diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 89f2e1e..b090295 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -3,7 +3,6 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import MediaAbout from "@/components/sections/about/MediaAbout"; import TeamCardOne from "@/components/sections/team/TeamCardOne"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterSimple from "@/components/sections/footer/FooterSimple"; @@ -13,29 +12,25 @@ export default function AboutPage() { const navItems = [ { name: "Home", id: "home" }, { name: "Properties", id: "properties" }, - { name: "About", id: "about" }, + { name: "Services", id: "services" }, { name: "Team", id: "team" }, { name: "Contact", id: "contact" }, ]; const navButton = { - text: "Schedule Viewing", - href: "/contact", - }; + text: "Schedule Viewing", href: "/contact"}; const footerColumns = [ { - title: "Navigation", - items: [ + title: "Navigation", items: [ { label: "Home", href: "/" }, { label: "Properties", href: "/properties" }, - { label: "About Us", href: "/about" }, - { label: "Team", href: "/team" }, + { label: "Services", href: "/" }, + { label: "Team", href: "/" }, ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "Buy Properties", href: "/" }, { label: "Sell Property", href: "/" }, { label: "Investment Analysis", href: "/" }, @@ -43,17 +38,15 @@ export default function AboutPage() { ], }, { - title: "Company", - items: [ - { label: "About Luxe", href: "/about" }, - { label: "Our Team", href: "/team" }, + title: "Company", items: [ + { label: "About Luxe", href: "/" }, + { label: "Our Team", href: "/" }, { label: "Careers", href: "/" }, { label: "News", href: "/" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "/" }, { label: "Terms of Service", href: "/" }, { label: "Disclaimers", href: "/" }, @@ -83,61 +76,16 @@ export default function AboutPage() { /> -
- -
-
); -} \ No newline at end of file +} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index b5caa6b..908aaa0 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,7 +3,6 @@ import Link from "next/link"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; -import MediaAbout from "@/components/sections/about/MediaAbout"; import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree"; import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterSimple from "@/components/sections/footer/FooterSimple"; @@ -13,29 +12,25 @@ export default function ContactPage() { const navItems = [ { name: "Home", id: "home" }, { name: "Properties", id: "properties" }, - { name: "About", id: "about" }, + { name: "Services", id: "services" }, { name: "Team", id: "team" }, { name: "Contact", id: "contact" }, ]; const navButton = { - text: "Schedule Viewing", - href: "/contact", - }; + text: "Schedule Viewing", href: "/contact"}; const footerColumns = [ { - title: "Navigation", - items: [ + title: "Navigation", items: [ { label: "Home", href: "/" }, { label: "Properties", href: "/properties" }, - { label: "About Us", href: "/about" }, - { label: "Team", href: "/team" }, + { label: "Services", href: "/" }, + { label: "Team", href: "/" }, ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "Buy Properties", href: "/" }, { label: "Sell Property", href: "/" }, { label: "Investment Analysis", href: "/" }, @@ -43,17 +38,15 @@ export default function ContactPage() { ], }, { - title: "Company", - items: [ - { label: "About Luxe", href: "/about" }, - { label: "Our Team", href: "/team" }, + title: "Company", items: [ + { label: "About Luxe", href: "/" }, + { label: "Our Team", href: "/" }, { label: "Careers", href: "/" }, { label: "News", href: "/" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "/" }, { label: "Terms of Service", href: "/" }, { label: "Disclaimers", href: "/" }, @@ -83,22 +76,6 @@ export default function ContactPage() { /> -
- -
-
); -} \ No newline at end of file +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index b317fda..b6d66b9 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,31 +6,18 @@ import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; const dmSans = DM_Sans({ - variable: "--font-dm-sans", - subsets: ["latin"], + variable: "--font-dm-sans", subsets: ["latin"], }); const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], + variable: "--font-inter", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Luxury Real Estate | Premium Properties | Luxe Agency", - description: "Discover exceptional luxury properties and exclusive real estate investments with Luxe Properties. Expert agents specializing in high-end residential markets.", - keywords: "luxury real estate, high-end properties, exclusive listings, premium homes, luxury apartments, real estate investment", - openGraph: { - title: "Luxury Real Estate | Premium Properties | Luxe Agency", - description: "Discover exceptional luxury properties and exclusive real estate investments with Luxe Properties.", - url: "https://luxeproperties.com", - siteName: "Luxe Properties", - type: "website", - }, + title: "Luxury Real Estate | Premium Properties | Luxe Agency", description: "Discover exceptional luxury properties and exclusive real estate investments with Luxe Properties. Expert agents specializing in high-end residential markets.", keywords: "luxury real estate, high-end properties, exclusive listings, premium homes, luxury apartments, real estate investment", openGraph: { + title: "Luxury Real Estate | Premium Properties | Luxe Agency", description: "Discover exceptional luxury properties and exclusive real estate investments with Luxe Properties.", url: "https://luxeproperties.com", siteName: "Luxe Properties", type: "website"}, twitter: { - card: "summary_large_image", - title: "Luxury Real Estate | Premium Properties", - description: "Discover exceptional luxury properties with Luxe Properties.", - }, + card: "summary_large_image", title: "Luxury Real Estate | Premium Properties", description: "Discover exceptional luxury properties with Luxe Properties."}, robots: { index: true, follow: true, @@ -1421,4 +1408,4 @@ export default function RootLayout({ ); -} \ No newline at end of file +} diff --git a/src/app/page.tsx b/src/app/page.tsx index 15db9f2..0c3c6f6 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -5,7 +5,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import HeroBillboardGallery from "@/components/sections/hero/HeroBillboardGallery"; import ProductCardFour from "@/components/sections/product/ProductCardFour"; -import MediaAbout from "@/components/sections/about/MediaAbout"; import FeatureCardThree from "@/components/sections/feature/featureCardThree/FeatureCardThree"; import MetricCardThree from "@/components/sections/metrics/MetricCardThree"; import TestimonialCardFive from "@/components/sections/testimonial/TestimonialCardFive"; @@ -17,29 +16,25 @@ export default function HomePage() { const navItems = [ { name: "Home", id: "home" }, { name: "Properties", id: "properties" }, - { name: "About", id: "about" }, + { name: "Services", id: "services" }, { name: "Team", id: "team" }, { name: "Contact", id: "contact" }, ]; const navButton = { - text: "Schedule Viewing", - href: "/contact", - }; + text: "Schedule Viewing", href: "/contact"}; const footerColumns = [ { - title: "Navigation", - items: [ + title: "Navigation", items: [ { label: "Home", href: "/" }, { label: "Properties", href: "/properties" }, - { label: "About Us", href: "/about" }, - { label: "Team", href: "/team" }, + { label: "Services", href: "/" }, + { label: "Team", href: "/" }, ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "Buy Properties", href: "/" }, { label: "Sell Property", href: "/" }, { label: "Investment Analysis", href: "/" }, @@ -47,17 +42,15 @@ export default function HomePage() { ], }, { - title: "Company", - items: [ - { label: "About Luxe", href: "/about" }, - { label: "Our Team", href: "/team" }, + title: "Company", items: [ + { label: "About Luxe", href: "/" }, + { label: "Our Team", href: "/" }, { label: "Careers", href: "/" }, { label: "News", href: "/" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "/" }, { label: "Terms of Service", href: "/" }, { label: "Disclaimers", href: "/" }, @@ -96,29 +89,19 @@ export default function HomePage() { mediaItems={[ { imageSrc: - "http://img.b2bpic.net/free-photo/modern-villa-with-multiple-lights-sun-loungers-asprovalta-greece_1268-16093.jpg?_wi=1", - imageAlt: "Luxury modern mansion exterior", - }, + "http://img.b2bpic.net/free-photo/modern-villa-with-multiple-lights-sun-loungers-asprovalta-greece_1268-16093.jpg?_wi=1", imageAlt: "Luxury modern mansion exterior"}, { imageSrc: - "http://img.b2bpic.net/free-photo/wooden-sauna-with-mountain-view-panoramic-calm_169016-70823.jpg?_wi=1", - imageAlt: "Contemporary villa interior design", - }, + "http://img.b2bpic.net/free-photo/wooden-sauna-with-mountain-view-panoramic-calm_169016-70823.jpg?_wi=1", imageAlt: "Contemporary villa interior design"}, { imageSrc: - "http://img.b2bpic.net/free-photo/attractive-woman-standing-with-coffee-near-window_7502-9288.jpg", - imageAlt: "Modern penthouse with city views", - }, + "http://img.b2bpic.net/free-photo/attractive-woman-standing-with-coffee-near-window_7502-9288.jpg", imageAlt: "Modern penthouse with city views"}, { imageSrc: - "http://img.b2bpic.net/free-photo/scenic-view-sandy-beach-beach-with-sun-beds-umbrellas-open-against-sea-mountains-hotel-resort-tekirova-kemer-turkey_146671-18877.jpg", - imageAlt: "Beachfront luxury property", - }, + "http://img.b2bpic.net/free-photo/scenic-view-sandy-beach-beach-with-sun-beds-umbrellas-open-against-sea-mountains-hotel-resort-tekirova-kemer-turkey_146671-18877.jpg", imageAlt: "Beachfront luxury property"}, { imageSrc: - "http://img.b2bpic.net/free-photo/modern-villa-with-multiple-lights-sun-loungers-asprovalta-greece_1268-16093.jpg?_wi=2", - imageAlt: "Exclusive estate with grounds", - }, + "http://img.b2bpic.net/free-photo/modern-villa-with-multiple-lights-sun-loungers-asprovalta-greece_1268-16093.jpg?_wi=2", imageAlt: "Exclusive estate with grounds"}, ]} buttons={[ { text: "View Collections", href: "/properties" }, @@ -137,32 +120,14 @@ export default function HomePage() { tagIcon={Gem} products={[ { - id: "property-1", - name: "Metropolitan Penthouse", - price: "$8,500,000", - variant: "4 Bed | 4 Bath | Downtown", - imageSrc: - "http://img.b2bpic.net/free-photo/minimalist-architecture-space_23-2151912551.jpg?_wi=1", - imageAlt: "Metropolitan luxury penthouse", - }, + id: "property-1", name: "Luxury Penthouse - Downtown Bratislava", price: "€2,450,000", variant: "4 Bed | 4 Bath | Downtown", imageSrc: + "http://img.b2bpic.net/free-photo/minimalist-architecture-space_23-2151912551.jpg?_wi=1", imageAlt: "Downtown luxury penthouse"}, { - id: "property-2", - name: "Coastal Villa Estate", - price: "$12,200,000", - variant: "5 Bed | 6 Bath | Beachfront", - imageSrc: - "http://img.b2bpic.net/free-photo/armchair-couch-with-cushions_1203-763.jpg?_wi=1", - imageAlt: "Coastal luxury villa", - }, + id: "property-2", name: "Exclusive Villa - Old Town District", price: "€3,850,000", variant: "5 Bed | 6 Bath | Historic Center", imageSrc: + "http://img.b2bpic.net/free-photo/armchair-couch-with-cushions_1203-763.jpg?_wi=1", imageAlt: "Old town luxury villa"}, { - id: "property-3", - name: "Contemporary Mansion", - price: "$15,750,000", - variant: "7 Bed | 8 Bath | Gated Estate", - imageSrc: - "http://img.b2bpic.net/free-photo/miami-luxury-house_649448-2903.jpg?_wi=1", - imageAlt: "Contemporary luxury mansion", - }, + id: "property-3", name: "Premier Estate - Danube Riverside", price: "€5,200,000", variant: "7 Bed | 8 Bath | River View", imageSrc: + "http://img.b2bpic.net/free-photo/miami-luxury-house_649448-2903.jpg?_wi=1", imageAlt: "Danube riverside luxury estate"}, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -171,23 +136,7 @@ export default function HomePage() { /> -
- -
- -
+
@@ -377,10 +211,10 @@ export default function HomePage() { ); -} \ No newline at end of file +} diff --git a/src/app/properties/page.tsx b/src/app/properties/page.tsx index 632b741..49cf726 100644 --- a/src/app/properties/page.tsx +++ b/src/app/properties/page.tsx @@ -13,29 +13,25 @@ export default function PropertiesPage() { const navItems = [ { name: "Home", id: "home" }, { name: "Properties", id: "properties" }, - { name: "About", id: "about" }, + { name: "Services", id: "services" }, { name: "Team", id: "team" }, { name: "Contact", id: "contact" }, ]; const navButton = { - text: "Schedule Viewing", - href: "/contact", - }; + text: "Schedule Viewing", href: "/contact"}; const footerColumns = [ { - title: "Navigation", - items: [ + title: "Navigation", items: [ { label: "Home", href: "/" }, { label: "Properties", href: "/properties" }, - { label: "About Us", href: "/about" }, - { label: "Team", href: "/team" }, + { label: "Services", href: "/" }, + { label: "Team", href: "/" }, ], }, { - title: "Services", - items: [ + title: "Services", items: [ { label: "Buy Properties", href: "/" }, { label: "Sell Property", href: "/" }, { label: "Investment Analysis", href: "/" }, @@ -43,17 +39,15 @@ export default function PropertiesPage() { ], }, { - title: "Company", - items: [ - { label: "About Luxe", href: "/about" }, - { label: "Our Team", href: "/team" }, + title: "Company", items: [ + { label: "About Luxe", href: "/" }, + { label: "Our Team", href: "/" }, { label: "Careers", href: "/" }, { label: "News", href: "/" }, ], }, { - title: "Legal", - items: [ + title: "Legal", items: [ { label: "Privacy Policy", href: "/" }, { label: "Terms of Service", href: "/" }, { label: "Disclaimers", href: "/" }, @@ -91,50 +85,20 @@ export default function PropertiesPage() { tagIcon={Gem} products={[ { - id: "property-1", - name: "Metropolitan Penthouse", - price: "$8,500,000", - variant: "4 Bed | 4 Bath | Downtown", - imageSrc: - "http://img.b2bpic.net/free-photo/minimalist-architecture-space_23-2151912551.jpg?_wi=2", - imageAlt: "Metropolitan luxury penthouse", - }, + id: "property-1", name: "Luxury Penthouse - Downtown Bratislava", price: "€2,450,000", variant: "4 Bed | 4 Bath | Downtown", imageSrc: + "http://img.b2bpic.net/free-photo/minimalist-architecture-space_23-2151912551.jpg?_wi=2", imageAlt: "Downtown luxury penthouse"}, { - id: "property-2", - name: "Coastal Villa Estate", - price: "$12,200,000", - variant: "5 Bed | 6 Bath | Beachfront", - imageSrc: - "http://img.b2bpic.net/free-photo/armchair-couch-with-cushions_1203-763.jpg?_wi=2", - imageAlt: "Coastal luxury villa", - }, + id: "property-2", name: "Exclusive Villa - Old Town District", price: "€3,850,000", variant: "5 Bed | 6 Bath | Historic Center", imageSrc: + "http://img.b2bpic.net/free-photo/armchair-couch-with-cushions_1203-763.jpg?_wi=2", imageAlt: "Old town luxury villa"}, { - id: "property-3", - name: "Contemporary Mansion", - price: "$15,750,000", - variant: "7 Bed | 8 Bath | Gated Estate", - imageSrc: - "http://img.b2bpic.net/free-photo/miami-luxury-house_649448-2903.jpg?_wi=2", - imageAlt: "Contemporary luxury mansion", - }, + id: "property-3", name: "Premier Estate - Danube Riverside", price: "€5,200,000", variant: "7 Bed | 8 Bath | River View", imageSrc: + "http://img.b2bpic.net/free-photo/miami-luxury-house_649448-2903.jpg?_wi=2", imageAlt: "Danube riverside luxury estate"}, { - id: "property-4", - name: "Alpine Ski Retreat", - price: "$9,800,000", - variant: "6 Bed | 7 Bath | Mountain View", - imageSrc: - "http://img.b2bpic.net/free-photo/modern-villa-with-multiple-lights-sun-loungers-asprovalta-greece_1268-16093.jpg?_wi=3", - imageAlt: "Alpine mountain luxury retreat", - }, + id: "property-4", name: "Alpine Ski Retreat", price: "€9,800,000", variant: "6 Bed | 7 Bath | Mountain View", imageSrc: + "http://img.b2bpic.net/free-photo/modern-villa-with-multiple-lights-sun-loungers-asprovalta-greece_1268-16093.jpg?_wi=3", imageAlt: "Alpine mountain luxury retreat"}, { - id: "property-5", - name: "Urban Art Deco Loft", - price: "$5,400,000", - variant: "3 Bed | 3 Bath | Arts District", - imageSrc: - "http://img.b2bpic.net/free-photo/wooden-sauna-with-mountain-view-panoramic-calm_169016-70823.jpg?_wi=2", - imageAlt: "Urban art deco luxury loft", - }, + id: "property-5", name: "Urban Art Deco Loft", price: "€5,400,000", variant: "3 Bed | 3 Bath | Arts District", imageSrc: + "http://img.b2bpic.net/free-photo/wooden-sauna-with-mountain-view-panoramic-calm_169016-70823.jpg?_wi=2", imageAlt: "Urban art deco luxury loft"}, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -151,32 +115,17 @@ export default function PropertiesPage() { tagIcon={Star} features={[ { - id: "01", - title: "Market Analysis", - description: - "Comprehensive research into emerging markets, appreciation trends, and investment opportunities in premium locations.", - imageSrc: - "http://img.b2bpic.net/free-photo/graph-growth-development-improvement-profit-success-concept_53876-133598.jpg?_wi=2", - imageAlt: "Market analysis and research", - }, + id: "01", title: "Market Analysis", description: + "Comprehensive research into emerging markets, appreciation trends, and investment opportunities in premium locations.", imageSrc: + "http://img.b2bpic.net/free-photo/graph-growth-development-improvement-profit-success-concept_53876-133598.jpg?_wi=2", imageAlt: "Market analysis and research"}, { - id: "02", - title: "Financing Solutions", - description: - "Connections with premier lenders and structured financing options tailored to high-value acquisitions and complex portfolios.", - imageSrc: - "http://img.b2bpic.net/free-photo/closeup-waitress-serving-dessert-guest-cafe_637285-8889.jpg?_wi=2", - imageAlt: "Premium financing solutions", - }, + id: "02", title: "Financing Solutions", description: + "Connections with premier lenders and structured financing options tailored to high-value acquisitions and complex portfolios.", imageSrc: + "http://img.b2bpic.net/free-photo/closeup-waitress-serving-dessert-guest-cafe_637285-8889.jpg?_wi=2", imageAlt: "Premium financing solutions"}, { - id: "03", - title: "Legal & Tax Optimization", - description: - "Expert guidance on structuring acquisitions for optimal tax efficiency and wealth preservation strategies.", - imageSrc: - "http://img.b2bpic.net/free-photo/focused-wisconsin-state-with-magnifying-glass_23-2148232432.jpg?_wi=2", - imageAlt: "Legal and tax consultation", - }, + id: "03", title: "Legal & Tax Optimization", description: + "Expert guidance on structuring acquisitions for optimal tax efficiency and wealth preservation strategies.", imageSrc: + "http://img.b2bpic.net/free-photo/focused-wisconsin-state-with-magnifying-glass_23-2148232432.jpg?_wi=2", imageAlt: "Legal and tax consultation"}, ]} gridVariant="three-columns-all-equal-width" animationType="slide-up" @@ -203,10 +152,10 @@ export default function PropertiesPage() { ); -} \ No newline at end of file +}