Compare commits
8 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9a08e62532 | |||
| 81757a790a | |||
| e651282072 | |||
| 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 FeatureCardOne from '@/components/sections/feature/FeatureCardOne';
|
||||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
||||||
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
import HeroBillboardScroll from '@/components/sections/hero/HeroBillboardScroll';
|
||||||
import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
|
|
||||||
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline';
|
||||||
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard';
|
||||||
import { Compass, MapPin, Target, Users } from "lucide-react";
|
import { Navigation } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
<ThemeProvider
|
<ThemeProvider
|
||||||
defaultButtonVariant="expand-hover"
|
defaultButtonVariant="expand-hover"
|
||||||
defaultTextAnimation="background-highlight"
|
defaultTextAnimation="background-highlight"
|
||||||
borderRadius="pill"
|
borderRadius="rounded"
|
||||||
contentWidth="mediumSmall"
|
contentWidth="medium"
|
||||||
sizing="largeSmall"
|
sizing="medium"
|
||||||
background="floatingGradient"
|
background="noise"
|
||||||
cardStyle="soft-shadow"
|
cardStyle="glass-elevated"
|
||||||
primaryButtonStyle="gradient"
|
primaryButtonStyle="flat"
|
||||||
secondaryButtonStyle="solid"
|
secondaryButtonStyle="glass"
|
||||||
headingFontWeight="extrabold"
|
headingFontWeight="semibold"
|
||||||
>
|
>
|
||||||
<ReactLenis root>
|
<ReactLenis root>
|
||||||
<div id="nav" data-section="nav">
|
<div id="nav" data-section="nav">
|
||||||
@@ -31,23 +30,20 @@ export default function LandingPage() {
|
|||||||
navItems={[
|
navItems={[
|
||||||
{ name: "Home", id: "home" },
|
{ name: "Home", id: "home" },
|
||||||
{ name: "Map", id: "map" },
|
{ name: "Map", id: "map" },
|
||||||
{ name: "Directions", id: "directions" },
|
|
||||||
{ name: "About", id: "about" },
|
{ name: "About", id: "about" },
|
||||||
{ name: "Contact", id: "contact" },
|
{ name: "Contact", id: "contact" },
|
||||||
]}
|
]}
|
||||||
brandName="CampusNav"
|
brandName="VCET Navigator"
|
||||||
button={{ text: "Get Started", href: "#home" }}
|
button={{ text: "Get Started", href: "#map" }}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="home" data-section="home">
|
<div id="home" data-section="home">
|
||||||
<HeroBillboardScroll
|
<HeroBillboardScroll
|
||||||
background={{ variant: "gradient-bars" }}
|
background={{ variant: "plain" }}
|
||||||
title="Navigate Your Campus Effortlessly"
|
title="VCET Navigator"
|
||||||
description="Find your classes, labs, and offices in seconds. The ultimate smart wayfinding experience for students and visitors."
|
description="An aesthetic, minimal campus companion for Velammal College of Engineering and Technology, Madurai. Navigate your campus with precision and ease."
|
||||||
buttons={[{ text: "Start Searching", href: "#map" }]}
|
buttons={[{ text: "Explore Campus", 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"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -55,80 +51,69 @@ export default function LandingPage() {
|
|||||||
<FeatureCardOne
|
<FeatureCardOne
|
||||||
animationType="slide-up"
|
animationType="slide-up"
|
||||||
textboxLayout="split"
|
textboxLayout="split"
|
||||||
gridVariant="uniform-all-items-equal"
|
gridVariant="two-columns-alternating-heights"
|
||||||
useInvertedBackground={false}
|
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={[
|
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>
|
||||||
|
|
||||||
<div id="about" data-section="about">
|
<div id="about" data-section="about">
|
||||||
<TestimonialAboutCard
|
<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}
|
useInvertedBackground={false}
|
||||||
title="Our Impact at a Glance"
|
tag="About VCET Navigator"
|
||||||
description="Helping thousands of students navigate campus life with ease and confidence."
|
title="Modern Wayfinding"
|
||||||
metrics={[
|
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."
|
||||||
{ id: "m1", value: "15K+", title: "Daily Users", description: "Active students navigating our halls daily.", icon: Users },
|
subdescription="This tool provides an intuitive way for freshers and guests to explore the campus facilities without the confusion of traditional physical signage."
|
||||||
{ id: "m2", value: "500+", title: "Campus POIs", description: "Classrooms, labs, and essential service points indexed.", icon: Compass },
|
mediaAnimation="opacity"
|
||||||
{ id: "m3", value: "99%", title: "Accuracy Rate", description: "Precise wayfinding even in complex indoor structures.", icon: Target },
|
icon={Navigation}
|
||||||
]}
|
videoSrc="https://www.vcet.ac.in/about-video.mp4"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactText
|
<ContactText
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{ variant: "gradient-bars" }}
|
background={{ variant: "plain" }}
|
||||||
text="Need help or have questions about the system? Get in touch with our support team."
|
text="Need assistance? Reach out to the IT support desk or campus administration office for specific building access queries."
|
||||||
buttons={[{ text: "Email Support", href: "mailto:support@campusnav.edu" }]}
|
buttons={[{ text: "Get Support", href: "mailto:info@vcet.ac.in" }]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterMedia
|
<FooterMedia
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/full-shot-adults-walking-together_23-2149033742.jpg?_wi=2"
|
logoText="VCET Navigator"
|
||||||
logoText="CampusNav"
|
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Navigation", items: [
|
title: "Navigation",
|
||||||
|
items: [
|
||||||
{ label: "Map", href: "#map" },
|
{ label: "Map", href: "#map" },
|
||||||
{ label: "Directions", href: "#directions" },
|
|
||||||
{ label: "About", href: "#about" },
|
{ label: "About", href: "#about" },
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Resources", items: [
|
title: "University",
|
||||||
{ label: "Help Center", href: "#" },
|
items: [
|
||||||
|
{ label: "Official Site", href: "https://www.vcet.ac.in" },
|
||||||
{ label: "Contact", href: "#contact" },
|
{ label: "Contact", href: "#contact" },
|
||||||
{ label: "Privacy Policy", href: "#" },
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
videoSrc="https://www.vcet.ac.in/footer-video.mp4"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
@@ -10,15 +10,15 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #ffffff;
|
--background: #f8fafc;
|
||||||
--card: #f9f9f9;
|
--card: #ffffff;
|
||||||
--foreground: #000612e6;
|
--foreground: #1e293b;
|
||||||
--primary-cta: #106EFB;
|
--primary-cta: #475569;
|
||||||
--primary-cta-text: #ffffff;
|
--primary-cta-text: #ffffff;
|
||||||
--secondary-cta: #f9f9f9;
|
--secondary-cta: #f1f5f9;
|
||||||
--secondary-cta-text: #000612e6;
|
--secondary-cta-text: #000612e6;
|
||||||
--accent: #e2e2e2;
|
--accent: #e2e8f0;
|
||||||
--background-accent: #106EFB;
|
--background-accent: #f1f5f9;
|
||||||
|
|
||||||
/* text sizing - set by ThemeProvider */
|
/* text sizing - set by ThemeProvider */
|
||||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||||
|
|||||||
Reference in New Issue
Block a user