13 Commits

Author SHA1 Message Date
364fcaad8a Update src/app/rentals/page.tsx 2026-05-05 15:19:22 +00:00
abcd50caba Update src/app/hotels/page.tsx 2026-05-05 15:19:22 +00:00
6bf8945f63 Update src/app/rentals/page.tsx 2026-05-05 15:18:58 +00:00
b7f8f87fb9 Update src/app/hotels/page.tsx 2026-05-05 15:18:57 +00:00
c8cfedddd8 Update src/app/apartments/page.tsx 2026-05-05 15:18:57 +00:00
443ff73210 Merge version_5 into main
Merge version_5 into main
2026-05-05 15:18:11 +00:00
0df06f8aa9 Update src/app/profile/page.tsx 2026-05-05 15:18:07 +00:00
c4bec1b3ef Merge version_5 into main
Merge version_5 into main
2026-05-05 15:17:46 +00:00
45106204d0 Add src/app/profile/page.tsx 2026-05-05 15:17:43 +00:00
af9ad8a9b2 Update src/app/page.tsx 2026-05-05 15:17:43 +00:00
376b9db1e9 Merge version_4 into main
Merge version_4 into main
2026-05-05 15:16:22 +00:00
8e360758c6 Update src/app/properties/page.tsx 2026-05-05 15:16:19 +00:00
8d8b48fb93 Merge version_3 into main
Merge version_3 into main
2026-05-05 15:15:09 +00:00
6 changed files with 63 additions and 4 deletions

View File

@@ -21,7 +21,7 @@ export default function ApartmentsPage() {
description="Browse our selection of premium apartments available for climate-controlled living." description="Browse our selection of premium apartments available for climate-controlled living."
textboxLayout="default" textboxLayout="default"
animationType="slide-up" animationType="slide-up"
features={[{ title: "Modern Studio", description: "High efficiency AC included", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-4.jpg" }]} features={[{ title: "Modern Studio", description: "High efficiency AC included", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-4.jpg" }, { title: "City Loft", description: "Climate controlled city living", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-1.jpg" }, { title: "Luxury Suite", description: "Advanced HVAC integrated", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-2.jpg" }]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
useInvertedBackground={false} useInvertedBackground={false}
/> />

View File

@@ -21,7 +21,7 @@ export default function HotelsPage() {
description="Explore our partnered hotels equipped with top-tier HVAC systems for optimal comfort." description="Explore our partnered hotels equipped with top-tier HVAC systems for optimal comfort."
textboxLayout="default" textboxLayout="default"
animationType="slide-up" animationType="slide-up"
features={[{ title: "Grand Plaza Hotel", description: "Central climate control throughout", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-5.jpg" }]} features={[{ title: "Grand Plaza Hotel", description: "Central climate control throughout", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-5.jpg" }, { title: "Mountain Resort", description: "Eco-friendly heating systems", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-6.jpg?_wi=1" }, { title: "Seaside Inn", description: "Coastal climate solutions", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-3.jpg" }]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
useInvertedBackground={false} useInvertedBackground={false}
/> />

View File

@@ -7,7 +7,6 @@ import HeroOverlay from "@/components/sections/hero/HeroOverlay";
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout"; import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne"; import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow"; import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen"; import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
import FaqSplitText from "@/components/sections/faq/FaqSplitText"; import FaqSplitText from "@/components/sections/faq/FaqSplitText";
import ContactCTA from "@/components/sections/contact/ContactCTA"; import ContactCTA from "@/components/sections/contact/ContactCTA";

50
src/app/profile/page.tsx Normal file
View File

@@ -0,0 +1,50 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import React from "react";
export default function ProfilePage() {
return (
<ThemeProvider
defaultButtonVariant="text-stagger"
defaultTextAnimation="entrance-slide"
borderRadius="rounded"
contentWidth="medium"
sizing="medium"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="glass"
headingFontWeight="normal"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Prime Realty"
navItems={[
{ name: "Home", id: "/" },
{ name: "Profile", id: "/profile" },
]}
button={{ text: "Sign Out", href: "/" }}
/>
</div>
<div className="min-h-screen pt-32 px-6 max-w-4xl mx-auto">
<h1 className="text-4xl font-bold mb-8">User Profile</h1>
<div className="bg-card p-8 rounded-lg shadow-sm border border-border">
<h2 className="text-2xl font-semibold mb-6">Credentials & Authentication</h2>
<div className="space-y-4">
<div>
<label className="block text-sm font-medium mb-1">Email Address</label>
<input type="email" disabled defaultValue="user@example.com" className="w-full p-2 border rounded bg-muted" />
</div>
<div>
<label className="block text-sm font-medium mb-1">Password</label>
<input type="password" defaultValue="••••••••" className="w-full p-2 border rounded" />
</div>
<button className="bg-primary text-primary-foreground px-4 py-2 rounded">Update Credentials</button>
</div>
</div>
</div>
</ThemeProvider>
);
}

View File

@@ -9,6 +9,15 @@ import { useState } from "react";
export default function PropertiesPage() { export default function PropertiesPage() {
const [search, setSearch] = useState(""); const [search, setSearch] = useState("");
const [priceSort, setPriceSort] = useState("");
const filters = [
{
label: "Price Rating", options: ["None", "Lowest to Highest", "Highest to Lowest"],
selected: priceSort,
onChange: (value: string) => setPriceSort(value),
}
];
return ( return (
<ThemeProvider <ThemeProvider
@@ -43,6 +52,7 @@ export default function PropertiesPage() {
searchValue={search} searchValue={search}
onSearchChange={setSearch} onSearchChange={setSearch}
searchPlaceholder="Search properties..." searchPlaceholder="Search properties..."
filters={filters}
/> />
</main> </main>
<FooterMedia <FooterMedia

View File

@@ -21,7 +21,7 @@ export default function RentalsPage() {
description="Browse rental properties featuring energy-efficient heating and cooling systems." description="Browse rental properties featuring energy-efficient heating and cooling systems."
textboxLayout="default" textboxLayout="default"
animationType="slide-up" animationType="slide-up"
features={[{ title: "Modern Villa", description: "Full HVAC maintenance included", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-6.jpg" }]} features={[{ title: "Modern Villa", description: "Full HVAC maintenance included", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-6.jpg?_wi=2" }, { title: "Cozy Cottage", description: "High efficiency furnace", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-7.jpg" }, { title: "Townhouse Retreat", description: "Multi-zone comfort system", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-8.jpg" }]}
gridVariant="uniform-all-items-equal" gridVariant="uniform-all-items-equal"
useInvertedBackground={false} useInvertedBackground={false}
/> />