Merge version_2_1781772709711 into main #3
@@ -1,169 +1,39 @@
|
||||
import AboutText from '@/components/sections/about/AboutText';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion';
|
||||
import FeaturesBorderGlow from '@/components/sections/features/FeaturesBorderGlow';
|
||||
import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
|
||||
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
|
||||
import { BookOpen, ShoppingBag, Users } from "lucide-react";
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
// AUTO-GENERATED shell by per-section-migrate.
|
||||
// Section bodies live in ./<PageBase>/sections/<X>.tsx. Edit the section
|
||||
// files directly. Non-block content (wrappers, non-inlinable sections) is
|
||||
// preserved inline; extracted section blocks become <XSection/> refs.
|
||||
|
||||
export default function HomePage() {
|
||||
import React from 'react';
|
||||
import HeroSection from './HomePage/sections/Hero';
|
||||
import AboutSection from './HomePage/sections/About';
|
||||
import FeaturesSection from './HomePage/sections/Features';
|
||||
import ProductSection from './HomePage/sections/Product';
|
||||
import MetricsSection from './HomePage/sections/Metrics';
|
||||
import TestimonialsSection from './HomePage/sections/Testimonials';
|
||||
import FaqSection from './HomePage/sections/Faq';
|
||||
import ContactSection from './HomePage/sections/Contact';
|
||||
|
||||
|
||||
{/* webild-stub @2026-06-18T08:53:24.244Z: remove the Aurora Sign Up page and revert to a professional college-style website design */}
|
||||
|
||||
export default function HomePage(): React.JSX.Element {
|
||||
return (
|
||||
<>
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroBillboard
|
||||
tag="Campus Life Optimized"
|
||||
title="Student life, all in one loop"
|
||||
description="Buy, borrow, and belong—UniLoop brings your scattered campus WhatsApp groups into one trusted, beautifully designed space. Connect with your hostel, discover events, and simplify every exchange."
|
||||
primaryButton={{
|
||||
text: "Join Your Campus", href: "#contact"}}
|
||||
secondaryButton={{
|
||||
text: "Learn More", href: "#about"}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/returning-item-online_23-2151952966.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<>
|
||||
<HeroSection />
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutText
|
||||
title="The Unified Student Ecosystem"
|
||||
primaryButton={{
|
||||
text: "Explore Features", href: "#features"}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<AboutSection />
|
||||
|
||||
<div id="features" data-section="features">
|
||||
<SectionErrorBoundary name="features">
|
||||
<FeaturesBorderGlow
|
||||
tag="Why UniLoop?"
|
||||
title="Everything you need to thrive"
|
||||
description="Stop jumping between fragmented groups. We bring the essential student experience into one place."
|
||||
features={[
|
||||
{
|
||||
icon: ShoppingBag,
|
||||
title: "Trusted Marketplace", description: "Buy and sell essentials safely within your college community."},
|
||||
{
|
||||
icon: Users,
|
||||
title: "Community Connection", description: "Connect with peers, find events, and build authentic relationships."},
|
||||
{
|
||||
icon: BookOpen,
|
||||
title: "Resource Sharing", description: "Borrow books or equipment from verified hostel residents instantly."},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FeaturesSection />
|
||||
|
||||
<div id="product" data-section="product">
|
||||
<SectionErrorBoundary name="product">
|
||||
<FeaturesImageBento
|
||||
tag="Platform Experience"
|
||||
title="Designed for your day-to-day"
|
||||
description="Built mobile-first to keep up with your busy schedule."
|
||||
items={[
|
||||
{
|
||||
title: "Verified Sellers", description: "Only verified campus students.", imageSrc: "http://img.b2bpic.net/free-photo/homepage-concept-with-search-bar_23-2150040217.jpg"},
|
||||
{
|
||||
title: "Secure Messaging", description: "Built-in peer-to-peer chat.", imageSrc: "http://img.b2bpic.net/free-photo/smartphone-with-opened-ai-chat-it_1268-21624.jpg"},
|
||||
{
|
||||
title: "Hostel Feeds", description: "Real-time updates near you.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-queer-students-outdoors_23-2150405221.jpg"},
|
||||
{
|
||||
title: "Event Discovery", description: "Never miss campus events.", imageSrc: "http://img.b2bpic.net/free-photo/calendar-planner-agenda-schedule-concept_53876-176748.jpg"},
|
||||
{
|
||||
title: "Smart Search", description: "Find items in your building.", imageSrc: "http://img.b2bpic.net/free-photo/homepage-concept-with-search-bar_23-2150040210.jpg"},
|
||||
{
|
||||
title: "Profile Stats", description: "Track your campus trust score.", imageSrc: "http://img.b2bpic.net/free-vector/simple-best-sports-beginners-landscape-tier-list_742173-8978.jpg"},
|
||||
{
|
||||
title: "Fast Liquidation", description: "Sell in seconds, hassle-free.", imageSrc: "http://img.b2bpic.net/free-vector/infographic-horizontal-banners-with-round-buttons-colorful-rings-world-icon-percent-rates-isolated_1284-45134.jpg"},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ProductSection />
|
||||
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsIconCards
|
||||
tag="Growth & Impact"
|
||||
title="Campus connectivity at scale"
|
||||
description="UniLoop is built to simplify the lives of thousands of students."
|
||||
metrics={[
|
||||
{
|
||||
icon: "Users", title: "Students onboarded", value: "15,000+"},
|
||||
{
|
||||
icon: "ShieldCheck", title: "Items exchanged", value: "24,000+"},
|
||||
{
|
||||
icon: "Zap", title: "Events discovered", value: "1,200+"},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<MetricsSection />
|
||||
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialMarqueeCards
|
||||
tag="Student voices"
|
||||
title="Built with the community"
|
||||
description="Hear from the students who use UniLoop daily."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sarah", role: "Hostel Resident", quote: "Finally, a place where I can trust the person selling me a desk lamp.", imageSrc: "http://img.b2bpic.net/free-photo/student-holds-modern-laptop-bottle-water-wears-round-spectacles-vision-correction-beige-jacket-poses-against-street_273609-55228.jpg"},
|
||||
{
|
||||
name: "Michael", role: "Social Connector", quote: "I've discovered more events on UniLoop than in three years of WhatsApp.", imageSrc: "http://img.b2bpic.net/free-photo/charming-handsome-african-american-male-with-bristle-afro-haircut-looking-aside-while-holding-backpack-strolling-city_176420-19797.jpg"},
|
||||
{
|
||||
name: "Emily", role: "Final Year Student", quote: "Liquidating my hostel items was painless. Saved me so much stress.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-teenager-happy-be-back-university_23-2148586573.jpg"},
|
||||
{
|
||||
name: "David", role: "Freshman", quote: "Made meeting new people and finding gear so much easier.", imageSrc: "http://img.b2bpic.net/free-photo/teenager-having-fun-with-friends_23-2149306182.jpg"},
|
||||
{
|
||||
name: "Jessica", role: "Campus Leader", quote: "The trust badges are a game changer for our campus community.", imageSrc: "http://img.b2bpic.net/free-photo/girl-standing-holding-notebook-pencil-smiling_23-2147657181.jpg"},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<TestimonialsSection />
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqTabbedAccordion
|
||||
tag="Got Questions?"
|
||||
title="Everything you need to know"
|
||||
description="Find answers to common questions about using UniLoop."
|
||||
categories={[
|
||||
{
|
||||
name: "General", items: [
|
||||
{
|
||||
question: "Is UniLoop free?", answer: "Yes, basic community usage is free. We offer premium verification for power sellers."},
|
||||
{
|
||||
question: "How do you ensure safety?", answer: "We mandate college ID verification for all users to ensure safety."},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Technical", items: [
|
||||
{
|
||||
question: "Is it mobile-only?", answer: "UniLoop is mobile-first, designed for the on-the-go student lifestyle."},
|
||||
{
|
||||
question: "Are messages secure?", answer: "Yes, all peer-to-peer communication is end-to-end encrypted within the app."},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<FaqSection />
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Ready to Loop?"
|
||||
text="Join your campus community today and start simplifying your student life."
|
||||
primaryButton={{
|
||||
text: "Join Now", href: "#"}}
|
||||
secondaryButton={{
|
||||
text: "Contact Support", href: "#"}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
<ContactSection />
|
||||
</>
|
||||
);
|
||||
}
|
||||
|
||||
20
src/pages/HomePage/sections/About.tsx
Normal file
20
src/pages/HomePage/sections/About.tsx
Normal file
@@ -0,0 +1,20 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "about" section.
|
||||
|
||||
import React from 'react';
|
||||
import AboutText from '@/components/sections/about/AboutText';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function AboutSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="about" data-section="about">
|
||||
<SectionErrorBoundary name="about">
|
||||
<AboutText
|
||||
title="The Unified Student Ecosystem"
|
||||
primaryButton={{
|
||||
text: "Explore Features", href: "#features"}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
23
src/pages/HomePage/sections/Contact.tsx
Normal file
23
src/pages/HomePage/sections/Contact.tsx
Normal file
@@ -0,0 +1,23 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "contact" section.
|
||||
|
||||
import React from 'react';
|
||||
import ContactCta from '@/components/sections/contact/ContactCta';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ContactSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="contact" data-section="contact">
|
||||
<SectionErrorBoundary name="contact">
|
||||
<ContactCta
|
||||
tag="Ready to Loop?"
|
||||
text="Join your campus community today and start simplifying your student life."
|
||||
primaryButton={{
|
||||
text: "Join Now", href: "#"}}
|
||||
secondaryButton={{
|
||||
text: "Contact Support", href: "#"}}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
38
src/pages/HomePage/sections/Faq.tsx
Normal file
38
src/pages/HomePage/sections/Faq.tsx
Normal file
@@ -0,0 +1,38 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "faq" section.
|
||||
|
||||
import React from 'react';
|
||||
import FaqTabbedAccordion from '@/components/sections/faq/FaqTabbedAccordion';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FaqSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="faq" data-section="faq">
|
||||
<SectionErrorBoundary name="faq">
|
||||
<FaqTabbedAccordion
|
||||
tag="Got Questions?"
|
||||
title="Everything you need to know"
|
||||
description="Find answers to common questions about using UniLoop."
|
||||
categories={[
|
||||
{
|
||||
name: "General", items: [
|
||||
{
|
||||
question: "Is UniLoop free?", answer: "Yes, basic community usage is free. We offer premium verification for power sellers."},
|
||||
{
|
||||
question: "How do you ensure safety?", answer: "We mandate college ID verification for all users to ensure safety."},
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Technical", items: [
|
||||
{
|
||||
question: "Is it mobile-only?", answer: "UniLoop is mobile-first, designed for the on-the-go student lifestyle."},
|
||||
{
|
||||
question: "Are messages secure?", answer: "Yes, all peer-to-peer communication is end-to-end encrypted within the app."},
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
32
src/pages/HomePage/sections/Features.tsx
Normal file
32
src/pages/HomePage/sections/Features.tsx
Normal file
@@ -0,0 +1,32 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "features" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesBorderGlow from '@/components/sections/features/FeaturesBorderGlow';
|
||||
import { BookOpen, ShoppingBag, Users } from "lucide-react";
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function FeaturesSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="features" data-section="features">
|
||||
<SectionErrorBoundary name="features">
|
||||
<FeaturesBorderGlow
|
||||
tag="Why UniLoop?"
|
||||
title="Everything you need to thrive"
|
||||
description="Stop jumping between fragmented groups. We bring the essential student experience into one place."
|
||||
features={[
|
||||
{
|
||||
icon: ShoppingBag,
|
||||
title: "Trusted Marketplace", description: "Buy and sell essentials safely within your college community."},
|
||||
{
|
||||
icon: Users,
|
||||
title: "Community Connection", description: "Connect with peers, find events, and build authentic relationships."},
|
||||
{
|
||||
icon: BookOpen,
|
||||
title: "Resource Sharing", description: "Borrow books or equipment from verified hostel residents instantly."},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
25
src/pages/HomePage/sections/Hero.tsx
Normal file
25
src/pages/HomePage/sections/Hero.tsx
Normal file
@@ -0,0 +1,25 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "hero" section.
|
||||
|
||||
import React from 'react';
|
||||
import HeroBillboard from '@/components/sections/hero/HeroBillboard';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function HeroSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="hero" data-section="hero">
|
||||
<SectionErrorBoundary name="hero">
|
||||
<HeroBillboard
|
||||
tag="Campus Life Optimized"
|
||||
title="Student life, all in one loop"
|
||||
description="Buy, borrow, and belong—UniLoop brings your scattered campus WhatsApp groups into one trusted, beautifully designed space. Connect with your hostel, discover events, and simplify every exchange."
|
||||
primaryButton={{
|
||||
text: "Join Your Campus", href: "#contact"}}
|
||||
secondaryButton={{
|
||||
text: "Learn More", href: "#about"}}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/returning-item-online_23-2151952966.jpg"
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
28
src/pages/HomePage/sections/Metrics.tsx
Normal file
28
src/pages/HomePage/sections/Metrics.tsx
Normal file
@@ -0,0 +1,28 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "metrics" section.
|
||||
|
||||
import React from 'react';
|
||||
import MetricsIconCards from '@/components/sections/metrics/MetricsIconCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function MetricsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="metrics" data-section="metrics">
|
||||
<SectionErrorBoundary name="metrics">
|
||||
<MetricsIconCards
|
||||
tag="Growth & Impact"
|
||||
title="Campus connectivity at scale"
|
||||
description="UniLoop is built to simplify the lives of thousands of students."
|
||||
metrics={[
|
||||
{
|
||||
icon: "Users", title: "Students onboarded", value: "15,000+"},
|
||||
{
|
||||
icon: "ShieldCheck", title: "Items exchanged", value: "24,000+"},
|
||||
{
|
||||
icon: "Zap", title: "Events discovered", value: "1,200+"},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
36
src/pages/HomePage/sections/Product.tsx
Normal file
36
src/pages/HomePage/sections/Product.tsx
Normal file
@@ -0,0 +1,36 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "product" section.
|
||||
|
||||
import React from 'react';
|
||||
import FeaturesImageBento from '@/components/sections/features/FeaturesImageBento';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function ProductSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="product" data-section="product">
|
||||
<SectionErrorBoundary name="product">
|
||||
<FeaturesImageBento
|
||||
tag="Platform Experience"
|
||||
title="Designed for your day-to-day"
|
||||
description="Built mobile-first to keep up with your busy schedule."
|
||||
items={[
|
||||
{
|
||||
title: "Verified Sellers", description: "Only verified campus students.", imageSrc: "http://img.b2bpic.net/free-photo/homepage-concept-with-search-bar_23-2150040217.jpg"},
|
||||
{
|
||||
title: "Secure Messaging", description: "Built-in peer-to-peer chat.", imageSrc: "http://img.b2bpic.net/free-photo/smartphone-with-opened-ai-chat-it_1268-21624.jpg"},
|
||||
{
|
||||
title: "Hostel Feeds", description: "Real-time updates near you.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-queer-students-outdoors_23-2150405221.jpg"},
|
||||
{
|
||||
title: "Event Discovery", description: "Never miss campus events.", imageSrc: "http://img.b2bpic.net/free-photo/calendar-planner-agenda-schedule-concept_53876-176748.jpg"},
|
||||
{
|
||||
title: "Smart Search", description: "Find items in your building.", imageSrc: "http://img.b2bpic.net/free-photo/homepage-concept-with-search-bar_23-2150040210.jpg"},
|
||||
{
|
||||
title: "Profile Stats", description: "Track your campus trust score.", imageSrc: "http://img.b2bpic.net/free-vector/simple-best-sports-beginners-landscape-tier-list_742173-8978.jpg"},
|
||||
{
|
||||
title: "Fast Liquidation", description: "Sell in seconds, hassle-free.", imageSrc: "http://img.b2bpic.net/free-vector/infographic-horizontal-banners-with-round-buttons-colorful-rings-world-icon-percent-rates-isolated_1284-45134.jpg"},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
32
src/pages/HomePage/sections/Testimonials.tsx
Normal file
32
src/pages/HomePage/sections/Testimonials.tsx
Normal file
@@ -0,0 +1,32 @@
|
||||
// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
|
||||
// file as the canonical source for the "testimonials" section.
|
||||
|
||||
import React from 'react';
|
||||
import TestimonialMarqueeCards from '@/components/sections/testimonial/TestimonialMarqueeCards';
|
||||
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
|
||||
|
||||
export default function TestimonialsSection(): React.JSX.Element {
|
||||
return (
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<SectionErrorBoundary name="testimonials">
|
||||
<TestimonialMarqueeCards
|
||||
tag="Student voices"
|
||||
title="Built with the community"
|
||||
description="Hear from the students who use UniLoop daily."
|
||||
testimonials={[
|
||||
{
|
||||
name: "Sarah", role: "Hostel Resident", quote: "Finally, a place where I can trust the person selling me a desk lamp.", imageSrc: "http://img.b2bpic.net/free-photo/student-holds-modern-laptop-bottle-water-wears-round-spectacles-vision-correction-beige-jacket-poses-against-street_273609-55228.jpg"},
|
||||
{
|
||||
name: "Michael", role: "Social Connector", quote: "I've discovered more events on UniLoop than in three years of WhatsApp.", imageSrc: "http://img.b2bpic.net/free-photo/charming-handsome-african-american-male-with-bristle-afro-haircut-looking-aside-while-holding-backpack-strolling-city_176420-19797.jpg"},
|
||||
{
|
||||
name: "Emily", role: "Final Year Student", quote: "Liquidating my hostel items was painless. Saved me so much stress.", imageSrc: "http://img.b2bpic.net/free-photo/portrait-teenager-happy-be-back-university_23-2148586573.jpg"},
|
||||
{
|
||||
name: "David", role: "Freshman", quote: "Made meeting new people and finding gear so much easier.", imageSrc: "http://img.b2bpic.net/free-photo/teenager-having-fun-with-friends_23-2149306182.jpg"},
|
||||
{
|
||||
name: "Jessica", role: "Campus Leader", quote: "The trust badges are a game changer for our campus community.", imageSrc: "http://img.b2bpic.net/free-photo/girl-standing-holding-notebook-pencil-smiling_23-2147657181.jpg"},
|
||||
]}
|
||||
/>
|
||||
</SectionErrorBoundary>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user