diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index fe16b57..4ba8eeb 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,12 +2,12 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import ReactLenis from "lenis/react"; -import ContactCenter from '@/components/sections/contact/ContactCenter'; -import FaqSplitText from '@/components/sections/faq/FaqSplitText'; -import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import ContactText from '@/components/sections/contact/ContactText'; +import FaqBase from '@/components/sections/faq/FaqBase'; -export default function LandingPage() { +export default function ContactPage() { return ( - + -
- -
+
+ alert('Form functionality to be integrated via CRM system.') }]} + /> +
-
- -
+
+ +
- +
); diff --git a/src/app/properties/[id]/page.tsx b/src/app/properties/[id]/page.tsx new file mode 100644 index 0000000..afd57d3 --- /dev/null +++ b/src/app/properties/[id]/page.tsx @@ -0,0 +1,125 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; +import AboutMetric from '@/components/sections/about/AboutMetric'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { useParams } from 'next/navigation'; +import { DollarSign, Home, Ruler, MapPin } from "lucide-react"; + +export default function PropertyDetailPage() { + const params = useParams(); + const propertyId = params.id; + + const propertyDetails = { + id: propertyId, + address: "123 Main St, Anytown, USA", price: "$550,000", bedrooms: "3 Beds", bathrooms: "2 Baths", sqft: "1,800 SqFt", description: `Discover this charming property, located in a highly desirable neighborhood. This home boasts spacious interiors, modern amenities, and a beautiful backyard perfect for entertaining. With ${propertyId} as its identifier, this listing is a prime example of value and comfort.`, + images: [ + "http://img.b2bpic.net/free-photo/house-front-with-garden_1145-217.jpg", "http://img.b2bpic.net/free-photo/minimalist-interio-design_23-2149363065.jpg", "http://img.b2bpic.net/free-photo/living-room-interior-design_23-2149363067.jpg" + ] + }; + + return ( + + + + +
+ +
+ +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/properties/page.tsx b/src/app/properties/page.tsx new file mode 100644 index 0000000..a223269 --- /dev/null +++ b/src/app/properties/page.tsx @@ -0,0 +1,130 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia'; +import TextSplitAbout from '@/components/sections/about/TextSplitAbout'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; + +export default function PropertiesPage() { + return ( + + + + +
+ +
+ + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index 2758245..1a5bb9f 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #f7f6f7; + --background: #f5f4f0; --card: #ffffff; - --foreground: #0c1325; - --primary-cta: #0b07ff; - --primary-cta-text: #f7f6f7; - --secondary-cta: #ffffff; - --secondary-cta-text: #0c1325; - --accent: #93b7ff; - --background-accent: #a8bae8; + --foreground: #1a1a1a; + --primary-cta: #2c2c2c; + --primary-cta-text: #f5f4f0; + --secondary-cta: #f5f4f0; + --secondary-cta-text: #1a1a1a; + --accent: #8a8a8a; + --background-accent: #e8e6e1; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);