Merge version_5 into main

Merge version_5 into main
This commit was merged in pull request #8.
This commit is contained in:
2026-05-09 23:08:01 +00:00

View File

@@ -11,7 +11,6 @@ import ProductCardThree from '@/components/sections/product/ProductCardThree';
import TeamCardFive from '@/components/sections/team/TeamCardFive';
import TextAbout from '@/components/sections/about/TextAbout';
import TestimonialCardOne from '@/components/sections/testimonial/TestimonialCardOne';
import { Globe, Lock, MapPin, MessageSquare, ShieldCheck } from "lucide-react";
export default function LandingPage() {
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: "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={[
{ text: "Find a Home", href: "#listings"},
{ text: "About Founder", href: "#founder"},
@@ -105,9 +110,9 @@ export default function LandingPage() {
textboxLayout="split"
useInvertedBackground={true}
testimonials={[
{ id: "1", name: "Sarah J.", role: "Flatmate", company: "Istanbul", rating: 5 },
{ id: "2", name: "Omar K.", role: "Owner", company: "Ankara", rating: 4 },
{ id: "3", name: "Elena V.", role: "Flatmate", company: "Izmir", 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" },
{ 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" },
{ id: "3", name: "Elena V.", role: "Flatmate", company: "Izmir", rating: 5, imageSrc: "http://img.b2bpic.net/free-photo/white-coffee-cup_74190-2408.jpg" },
]}
/>
</div>
@@ -150,4 +155,4 @@ export default function LandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}