Switch to version 1: remove src/app/user-profile/page.tsx

This commit is contained in:
2026-06-12 23:46:51 +00:00
parent 865727a03c
commit a0fa0b6d94

View File

@@ -1,154 +0,0 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import MediaAbout from '@/components/sections/about/MediaAbout';
import HeroBillboardGallery from '@/components/sections/hero/HeroBillboardGallery';
import MetricCardThree from '@/components/sections/metrics/MetricCardThree';
import FooterSimple from '@/components/sections/footer/FooterSimple';
import { User, Image, DollarSign, TrendingUp, Handshake, HeartHandshake, Award, Gauge } from "lucide-react";
export default function UserProfilePage() {
const commonNavItems = [
{ name: "Properties", href: "/#properties" },
{ name: "About", href: "/#about" },
{ name: "Services", href: "/#services" },
{ name: "Team", href: "/#team" },
{ name: "Testimonials", href: "/#testimonials" },
{ name: "Contact", href: "/#contact" },
{ name: "پروفایل کاربری", href: "/user-profile" }
];
return (
<ThemeProvider
defaultButtonVariant="hover-magnetic"
defaultTextAnimation="entrance-slide"
borderRadius="pill"
contentWidth="mediumSmall"
sizing="mediumLarge"
background="none"
cardStyle="glass-elevated"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="radial-glow"
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarStyleCentered
brandName="Luxe Properties"
navItems={commonNavItems}
button={{ text: "Schedule Viewing", href: "/#contact" }}
/>
</div>
<div id="bio" data-section="bio">
<MediaAbout
title="پروفایل کاربری: علی محمدی"
description="سلام، من علی محمدی هستم، یک کارآفرین پرشور و عاشق فناوری از تهران. در طول ۱۰ سال گذشته، در چندین استارتاپ موفق در زمینه هوش مصنوعی و بلاکچین نقش‌های کلیدی داشته‌ام. به ایجاد راه‌حل‌های نوآورانه و تأثیرگذار که زندگی مردم را بهبود می‌بخشند اعتقاد دارم. در اوقات فراغت، به عکاسی از طبیعت و یادگیری زبان‌های جدید علاقه‌مندم."
tag="درباره من"
tagIcon={User}
imageSrc="https://img.b2bpic.net/free-photo/business-people-using-digital-tablet-airport_107420-95868.jpg"
imageAlt="علی محمدی"
useInvertedBackground={false}
buttons={[
{ text: "ارتباط با من", href: "/#contact" }
]}
/>
</div>
<div id="gallery" data-section="gallery">
<HeroBillboardGallery
title="گالری تصاویر من"
description="لحظاتی از سفرهای من، پروژه‌های کاری و مناظر الهام‌بخش."
background={{ variant: "plain" }}
tag="تصاویر منتخب"
tagIcon={Image}
mediaItems={[
{
imageSrc: "https://img.b2bpic.net/free-photo/shanghai-night-china_1127-3170.jpg", imageAlt: "منظره شب تهران"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920926.jpg", imageAlt: "نمونه کار طراحی"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/luxury-architecture-exterior-design_23-2151920931.jpg", imageAlt: "سفر به طبیعت"
},
{
imageSrc: "https://img.b2bpic.net/free-photo/modern-spacious-room-with-large-panoramic-window_7502-7289.jpg", imageAlt: "فضای کار من"
}
]}
mediaAnimation="slide-up"
/>
</div>
<div id="earnings" data-section="earnings">
<MetricCardThree
title="خلاصه فعالیت‌ها و دستاوردها"
description="نگاهی به عملکرد و پیشرفت من در حوزه‌های مختلف."
tag="دستاوردها"
tagIcon={Award}
textboxLayout="default"
animationType="slide-up"
useInvertedBackground={true}
metrics={[
{
id: "1", icon: DollarSign,
title: "کل درآمد", value: "۵۰۰ میلیون+"
},
{
id: "2", icon: TrendingUp,
title: "رشد سالانه", value: "۳۵٪"
},
{
id: "3", icon: Handshake,
title: "تعداد همکاری‌ها", value: "۵۰+"
},
{
id: "4", icon: HeartHandshake,
title: "رضایت مشتری", value: "۹۸٪"
}
]}
/>
</div>
<div id="footer" data-section="footer">
<FooterSimple
columns={[
{
title: "شرکت", items: [
{ label: "درباره ما", href: "/#about" },
{ label: "خدمات ما", href: "/#services" },
{ label: "تیم اجرایی", href: "/#team" },
{ label: "املاک", href: "/#properties" },
{ label: "تماس", href: "/#contact" }
]
},
{
title: "منابع", items: [
{ label: "راهنمای سرمایه گذاری", href: "#" },
{ label: "گزارش‌های بازار", href: "#" },
{ label: "سوالات متداول", href: "#" },
{ label: "وبلاگ", href: "#" }
]
},
{
title: "حقوقی", items: [
{ label: "سیاست حفظ حریم خصوصی", href: "#" },
{ label: "شرایط خدمات", href: "#" },
{ label: "سیاست کوکی", href: "#" }
]
},
{
title: "ارتباط", items: [
{ label: "لینکدین", href: "#" },
{ label: "اینستاگرام", href: "#" },
{ label: "واتساپ", href: "#" }
]
}
]}
bottomLeftText="© 2025 Luxe Properties Dubai. تمامی حقوق محفوظ است."
bottomRightText="برتری در املاک لوکس"
/>
</div>
</ThemeProvider>
);
}