3 Commits

Author SHA1 Message Date
2877423c9a Update src/app/page.tsx 2026-05-09 23:08:21 +00:00
3a97cba398 Update src/app/page.tsx 2026-05-09 23:07:57 +00:00
926be882d1 Merge version_4 into main
Merge version_4 into main
2026-05-09 23:06:18 +00:00

View File

@@ -11,7 +11,6 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TeamCardFive from '@/components/sections/team/TeamCardFive'; import TeamCardFive from '@/components/sections/team/TeamCardFive';
import TextAbout from '@/components/sections/about/TextAbout'; import TextAbout from '@/components/sections/about/TextAbout';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne'; import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import { Globe, Lock, MapPin, MessageSquare, ShieldCheck } from "lucide-react";
export default function LandingPage() { export default function LandingPage() {
return ( return (
@@ -51,6 +50,12 @@ export default function LandingPage() {
{ name: "Zeynep Demir", handle: "@zey.dem", testimonial: "Excellent platform, very easy to use to find roommates in Ankara.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/closeup-pensive-beautiful-business-woman_1262-2981.jpg"}, { name: "Zeynep Demir", handle: "@zey.dem", testimonial: "Excellent platform, very easy to use to find roommates in Ankara.", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/closeup-pensive-beautiful-business-woman_1262-2981.jpg"},
{ name: "Mehmet Oz", handle: "@mo.oz", testimonial: "Verified profiles made me feel safe. Highly recommend to students.", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg"}, { name: "Mehmet Oz", handle: "@mo.oz", testimonial: "Verified profiles made me feel safe. Highly recommend to students.", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg"},
]} ]}
avatars={[
{ src: "http://img.b2bpic.net/free-photo/teamwork-cooperation-concept_273609-6355.jpg", alt: "User 1" },
{ src: "http://img.b2bpic.net/free-photo/closeup-pensive-beautiful-business-woman_1262-2981.jpg", alt: "User 2" },
{ src: "http://img.b2bpic.net/free-photo/alone-specialist-handsome-daydreaming-collar_1262-870.jpg", alt: "User 3" }
]}
avatarText="Trusted by our community"
buttons={[ buttons={[
{ text: "Find a Home", href: "#listings"}, { text: "Find a Home", href: "#listings"},
{ text: "About Founder", href: "#founder"}, { text: "About Founder", href: "#founder"},
@@ -74,9 +79,9 @@ export default function LandingPage() {
gridVariant="three-columns-all-equal-width" gridVariant="three-columns-all-equal-width"
useInvertedBackground={true} useInvertedBackground={true}
products={[ products={[
{ id: "1", name: "Modern Flat in Istanbul", price: "₺5,000/mo", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-teens-spending-time-together_23-2149604069.jpg"}, { id: "1", name: "Modern Flat in Istanbul", price: "₺5,000/mo", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-teens-spending-time-together_23-2149604069.jpg?_wi=1"},
{ id: "2", name: "Shared Room in Ankara", price: "₺3,200/mo", imageSrc: "http://img.b2bpic.net/free-photo/house-interior-with-leather-couch-comfortable-bean-bag-awaiting-guests-arrive_482257-103861.jpg"}, { id: "2", name: "Shared Room in Ankara", price: "₺3,200/mo", imageSrc: "http://img.b2bpic.net/free-photo/house-interior-with-leather-couch-comfortable-bean-bag-awaiting-guests-arrive_482257-103861.jpg?_wi=1"},
{ id: "3", name: "Cozy Space in Izmir", price: "₺2,800/mo", imageSrc: "http://img.b2bpic.net/free-photo/white-coffee-cup_74190-2408.jpg"}, { id: "3", name: "Cozy Space in Izmir", price: "₺2,800/mo", imageSrc: "http://img.b2bpic.net/free-photo/white-coffee-cup_74190-2408.jpg?_wi=1"},
]} ]}
title="Available Rooms & Roommates" title="Available Rooms & Roommates"
description="Explore curated spaces and roommate requests in major Turkish cities with our advanced filtering system." description="Explore curated spaces and roommate requests in major Turkish cities with our advanced filtering system."
@@ -105,9 +110,9 @@ export default function LandingPage() {
textboxLayout="split" textboxLayout="split"
useInvertedBackground={true} useInvertedBackground={true}
testimonials={[ testimonials={[
{ id: "1", name: "Sarah J.", role: "Flatmate", company: "Istanbul", rating: 5 }, { id: "1", name: "Sarah J.", role: "Flatmate", company: "Istanbul", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/high-angle-teens-spending-time-together_23-2149604069.jpg?_wi=2" },
{ id: "2", name: "Omar K.", role: "Owner", company: "Ankara", rating: 4 }, { id: "2", name: "Omar K.", role: "Owner", company: "Ankara", rating: 4, imageSrc: "http://img.b2bpic.net/free-photo/house-interior-with-leather-couch-comfortable-bean-bag-awaiting-guests-arrive_482257-103861.jpg?_wi=2" },
{ id: "3", name: "Elena V.", role: "Flatmate", company: "Izmir", rating: 5 }, { id: "3", name: "Elena V.", role: "Flatmate", company: "Izmir", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/white-coffee-cup_74190-2408.jpg?_wi=2" },
]} ]}
/> />
</div> </div>
@@ -150,4 +155,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }