Merge version_5 into main #6

Merged
bender merged 2 commits from version_5 into main 2026-05-05 15:17:47 +00:00
2 changed files with 36 additions and 1 deletions

View File

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

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

@@ -0,0 +1,36 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import React from "react";
export default function ProfilePage() {
return (
<ThemeProvider>
<NavbarLayoutFloatingInline
brandName="Prime Realty"
navItems={[
{ name: "Home", id: "/" },
{ name: "Profile", id: "/profile" },
]}
/>
<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 value="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" value="••••••••" 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>
);
}