Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 81757a790a | |||
| 9f02fb58d7 | |||
| 3b70433c7c | |||
| c0a0634119 | |||
| 6aa10b154d | |||
| 3afe8f2585 |
103
src/app/page.tsx
103
src/app/page.tsx
@@ -6,24 +6,23 @@ import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||
import { Compass, MapPin, Target, Users } from "lucide-react";
|
||||
import { Navigation } from "lucide-react";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="expand-hover"
|
||||
defaultTextAnimation="background-highlight"
|
||||
borderRadius="pill"
|
||||
contentWidth="mediumSmall"
|
||||
sizing="largeSmall"
|
||||
background="floatingGradient"
|
||||
cardStyle="soft-shadow"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="solid"
|
||||
headingFontWeight="extrabold"
|
||||
borderRadius="rounded"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="noise"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="flat"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="semibold"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<div id="nav" data-section="nav">
|
||||
@@ -31,23 +30,20 @@ export default function LandingPage() {
|
||||
navItems={[
|
||||
{ name: "Home", id: "home" },
|
||||
{ name: "Map", id: "map" },
|
||||
{ name: "Directions", id: "directions" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
brandName="CampusNav"
|
||||
button={{ text: "Get Started", href: "#home" }}
|
||||
brandName="VCET Navigator"
|
||||
button={{ text: "Get Started", href: "#map" }}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="home" data-section="home">
|
||||
<HeroBillboardScroll
|
||||
background={{ variant: "gradient-bars" }}
|
||||
title="Navigate Your Campus Effortlessly"
|
||||
description="Find your classes, labs, and offices in seconds. The ultimate smart wayfinding experience for students and visitors."
|
||||
buttons={[{ text: "Start Searching", href: "#map" }]}
|
||||
imageSrc="http://img.b2bpic.net/free-photo/web-page-design-user-interface-template-copy-space_53876-120721.jpg"
|
||||
imageAlt="Campus navigation dashboard preview"
|
||||
background={{ variant: "plain" }}
|
||||
title="VCET Navigator"
|
||||
description="An aesthetic, minimal campus companion for Velammal College of Engineering and Technology, Madurai. Navigate your campus with precision and ease."
|
||||
buttons={[{ text: "Explore Campus", href: "#map" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -55,80 +51,69 @@ export default function LandingPage() {
|
||||
<FeatureCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="split"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
gridVariant="two-columns-alternating-heights"
|
||||
useInvertedBackground={false}
|
||||
title="Interactive Campus Map"
|
||||
description="Real-time campus location search centered at VCET (9.88, 78.16). Find buildings, labs, and lecture halls."
|
||||
features={[
|
||||
{
|
||||
title: "Smart Location Search", description: "Easily search for classrooms, labs, offices, and hostel buildings in real-time.", imageSrc: "http://img.b2bpic.net/free-photo/high-angle-man-using-tablet-outdoors_23-2150747667.jpg", imageAlt: "Search interface"},
|
||||
title: "Live Search",
|
||||
description: "Search by building name, department, or facility.", videoSrc: "https://www.vcet.ac.in/map-video-1.mp4"
|
||||
},
|
||||
{
|
||||
title: "Shortest Path Optimization", description: "Dynamic route planning that finds the fastest and most efficient way to your destination.", imageSrc: "http://img.b2bpic.net/free-photo/street-arrow-signage_23-2148242223.jpg", imageAlt: "Pathfinding visualization"},
|
||||
title: "Turn-by-Turn Directions",
|
||||
description: "Get precise paths from your current coordinate to any campus location.", videoSrc: "https://www.vcet.ac.in/map-video-2.mp4"
|
||||
},
|
||||
{
|
||||
title: "Quick QR Scanner", description: "Scan campus QR codes to immediately pull up location details and navigation prompts.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=o3j7jy", imageAlt: "QR Scanner"},
|
||||
title: "Use My Location",
|
||||
description: "Quickly identify your position on the VCET campus map.", videoSrc: "https://www.vcet.ac.in/map-video-3.mp4"
|
||||
}
|
||||
]}
|
||||
title="Interactive Campus Tools"
|
||||
description="Smart features to get you where you need to be, faster than ever before."
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about">
|
||||
<TestimonialAboutCard
|
||||
useInvertedBackground={true}
|
||||
tag="About Us"
|
||||
title="Built for Modern Students"
|
||||
description="The Campus Navigation System was designed to simplify campus life for every visitor, student, and faculty member. No more getting lost in endless hallways."
|
||||
subdescription="Our mission is to provide accessible, intuitive, and reliable digital navigation for all campus spaces."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-adults-walking-together_23-2149033742.jpg?_wi=1"
|
||||
imageAlt="Modern campus courtyard"
|
||||
mediaAnimation="blur-reveal"
|
||||
icon={MapPin}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric">
|
||||
<MetricCardOne
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
gridVariant="uniform-all-items-equal"
|
||||
useInvertedBackground={false}
|
||||
title="Our Impact at a Glance"
|
||||
description="Helping thousands of students navigate campus life with ease and confidence."
|
||||
metrics={[
|
||||
{ id: "m1", value: "15K+", title: "Daily Users", description: "Active students navigating our halls daily.", icon: Users },
|
||||
{ id: "m2", value: "500+", title: "Campus POIs", description: "Classrooms, labs, and essential service points indexed.", icon: Compass },
|
||||
{ id: "m3", value: "99%", title: "Accuracy Rate", description: "Precise wayfinding even in complex indoor structures.", icon: Target },
|
||||
]}
|
||||
tag="About VCET Navigator"
|
||||
title="Modern Wayfinding"
|
||||
description="VCET Navigator is designed for the students and visitors of Velammal College of Engineering and Technology, Madurai. We aim to modernize campus logistics with a clean, aesthetic interface."
|
||||
subdescription="This tool provides an intuitive way for freshers and guests to explore the campus facilities without the confusion of traditional physical signage."
|
||||
mediaAnimation="opacity"
|
||||
icon={Navigation}
|
||||
videoSrc="https://www.vcet.ac.in/about-video.mp4"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactText
|
||||
useInvertedBackground={false}
|
||||
background={{ variant: "gradient-bars" }}
|
||||
text="Need help or have questions about the system? Get in touch with our support team."
|
||||
buttons={[{ text: "Email Support", href: "mailto:support@campusnav.edu" }]}
|
||||
background={{ variant: "plain" }}
|
||||
text="Need assistance? Reach out to the IT support desk or campus administration office for specific building access queries."
|
||||
buttons={[{ text: "Get Support", href: "mailto:info@vcet.ac.in" }]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-adults-walking-together_23-2149033742.jpg?_wi=2"
|
||||
logoText="CampusNav"
|
||||
logoText="VCET Navigator"
|
||||
columns={[
|
||||
{
|
||||
title: "Navigation", items: [
|
||||
title: "Navigation",
|
||||
items: [
|
||||
{ label: "Map", href: "#map" },
|
||||
{ label: "Directions", href: "#directions" },
|
||||
{ label: "About", href: "#about" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Resources", items: [
|
||||
{ label: "Help Center", href: "#" },
|
||||
title: "University",
|
||||
items: [
|
||||
{ label: "Official Site", href: "https://www.vcet.ac.in" },
|
||||
{ label: "Contact", href: "#contact" },
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
videoSrc="https://www.vcet.ac.in/footer-video.mp4"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000612e6;
|
||||
--primary-cta: #106EFB;
|
||||
--background: #f8fafc;
|
||||
--card: #ffffff;
|
||||
--foreground: #1e293b;
|
||||
--primary-cta: #475569;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta: #f1f5f9;
|
||||
--secondary-cta-text: #000612e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #106EFB;
|
||||
--accent: #e2e8f0;
|
||||
--background-accent: #f1f5f9;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user