Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 9b39af8896 | |||
| 7ea3a267e8 | |||
| 0355ed73e9 | |||
| d89ee9dbb1 | |||
| 7d5c7d780a | |||
| 5024269478 | |||
| e936de40ee | |||
| 6d4f44b09e | |||
| e996e27ac0 |
64
src/app/admin/page.tsx
Normal file
64
src/app/admin/page.tsx
Normal file
@@ -0,0 +1,64 @@
|
||||
"use client";
|
||||
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import { Shield, Users, Settings, Bell, FileText, UserCheck } from "lucide-react";
|
||||
|
||||
export default function AdminDashboardPage() {
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="text-stagger"
|
||||
defaultTextAnimation="entrance-slide"
|
||||
borderRadius="pill"
|
||||
contentWidth="medium"
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="metallic"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Admin Panel"
|
||||
navItems={[
|
||||
{ name: "Dashboard", id: "dashboard" },
|
||||
{ name: "Users", id: "users" },
|
||||
{ name: "Settings", id: "settings" },
|
||||
]}
|
||||
button={{ text: "Logout", href: "/" }}
|
||||
/>
|
||||
<div className="pt-32 pb-20">
|
||||
<FeatureBento
|
||||
title="Admin Dashboard"
|
||||
description="Overview of village management operations and system status."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{ title: "User Management", description: "Manage residents, admins, and security staff accounts.", bentoComponent: "reveal-icon", icon: Users },
|
||||
{ title: "System Settings", description: "Configure gate access rules, notification templates, and system preferences.", bentoComponent: "reveal-icon", icon: Settings },
|
||||
{ title: "Alerts & Logs", description: "Monitor real-time gate access and system activity logs.", bentoComponent: "reveal-icon", icon: Bell },
|
||||
]}
|
||||
/>
|
||||
<MetricCardOne
|
||||
title="System Insights"
|
||||
description="Real-time data on village management efficiency."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
metrics={[
|
||||
{ id: "active", value: "85%", title: "Active Users", description: "Platform engagement rate", icon: UserCheck },
|
||||
{ id: "logs", value: "42", title: "New Alerts", description: "Requiring attention", icon: FileText },
|
||||
{ id: "security", value: "Active", title: "System Status", description: "All services running", icon: Shield },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
243
src/app/page.tsx
243
src/app/page.tsx
@@ -3,17 +3,14 @@
|
||||
import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
|
||||
import HeroSplitDoubleCarousel from "@/components/sections/hero/HeroSplitDoubleCarousel";
|
||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
|
||||
import FeatureCardSixteen from "@/components/sections/feature/FeatureCardSixteen";
|
||||
import MetricCardOne from "@/components/sections/metrics/MetricCardOne";
|
||||
import TeamCardFive from "@/components/sections/team/TeamCardFive";
|
||||
import FaqBase from "@/components/sections/faq/FaqBase";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterBase from "@/components/sections/footer/FooterBase";
|
||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||
import { Sparkles, ArrowUpRight, Shield, Bell, FileText, UserCheck, CalendarDays, KeyRound, Building2, Users } from "lucide-react";
|
||||
import HeroSplit from "@/components/sections/hero/HeroSplit";
|
||||
import FeatureCardSix from "@/components/sections/feature/FeatureCardSix";
|
||||
import TestimonialCardTwo from "@/components/sections/testimonial/TestimonialCardTwo";
|
||||
import MetricCardSeven from "@/components/sections/metrics/MetricCardSeven";
|
||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||
import ContactSplit from "@/components/sections/contact/ContactSplit";
|
||||
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
|
||||
import { Sparkles } from "lucide-react";
|
||||
|
||||
export default function WebAgency2Page() {
|
||||
return (
|
||||
@@ -25,136 +22,106 @@ export default function WebAgency2Page() {
|
||||
sizing="medium"
|
||||
background="none"
|
||||
cardStyle="glass-elevated"
|
||||
primaryButtonStyle="metallic"
|
||||
primaryButtonStyle="gradient"
|
||||
secondaryButtonStyle="glass"
|
||||
headingFontWeight="medium"
|
||||
>
|
||||
<ReactLenis root>
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Casimiro Westville"
|
||||
navItems={[
|
||||
{ name: "Dashboard", id: "dashboard" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Support", id: "support" },
|
||||
{ name: "Access", id: "contact" },
|
||||
]}
|
||||
button={{ text: "Login", href: "#contact" }}
|
||||
/>
|
||||
<HeroSplitDoubleCarousel
|
||||
title="Modern Management for Casimiro Westville"
|
||||
description="A seamless, digital-first approach to village administration. Empowering residents, securing the perimeter, and simplifying community management."
|
||||
tag="Community Harmony"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "canvas-reveal" }}
|
||||
buttons={[
|
||||
{ text: "Get Started", href: "#contact" },
|
||||
{ text: "Learn More", href: "#features" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
carouselPosition="right"
|
||||
leftCarouselItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/mock-up-animation-financial-stock-market-data-software-with-different-diagrams-graphs_482257-26904.jpg", imageAlt: "Modern village management portal" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/high-angle-friends-holding-smartphones_23-2150233666.jpg", imageAlt: "Resident mobile app interface" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/security-guard-workspace_23-2150321694.jpg", imageAlt: "Security gate digital dashboard" },
|
||||
]}
|
||||
rightCarouselItems={[
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/group-people-focused-their-smartphones_1262-20918.jpg", imageAlt: "Community digital communication" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/exterior-modern-residential-building_637285-1921.jpg", imageAlt: "Automated gate access log" },
|
||||
]}
|
||||
carouselItemClassName="!aspect-[4/5]"
|
||||
/>
|
||||
<FeatureBento
|
||||
title="Key Modules for Every Role"
|
||||
description="Unified access control and management for a safer, more connected neighborhood."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "Admin Hub", description: "Streamlined billing, facility scheduling, and resident management tools.", bentoComponent: "reveal-icon", icon: Building2,
|
||||
},
|
||||
{
|
||||
title: "Resident Portal", description: "Submit requests, pay dues, and receive community announcements instantly.", bentoComponent: "media-stack", items: [
|
||||
{ imageSrc: "http://img.b2bpic.net/free-photo/crop-hands-near-tablet-with-plan_23-2147785623.jpg", imageAlt: "Resident dashboard overview" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-vector/interface-charity-application_23-2148632019.jpg", imageAlt: "Billing and payments portal" },
|
||||
{ imageSrc: "http://img.b2bpic.net/free-vector/illustation-loan-application_53876-20579.jpg", imageAlt: "Request tracking" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Security Interface", description: "Real-time visitor logs, gate access validation, and emergency broadcast systems.", bentoComponent: "reveal-icon", icon: Shield,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
<FeatureCardTwentySix
|
||||
title="Core Functionality"
|
||||
description="Smart tools engineered to simplify your daily operations at Casimiro Westville."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "Explore All", href: "#features" }]}
|
||||
cardClassName="!h-auto aspect-video"
|
||||
features={[
|
||||
{
|
||||
title: "Gate Access Control", description: "Secure, automated visitor management for peace of mind.", imageSrc: "http://img.b2bpic.net/free-photo/house-entrance-japan-building-with-fence_23-2149301077.jpg", buttonIcon: ArrowUpRight,
|
||||
},
|
||||
{
|
||||
title: "Facility Booking", description: "Easily reserve clubhouse, court, or pool online.", imageSrc: "http://img.b2bpic.net/free-photo/afternoon-tea-set-with-latte-coffee-hot-tea-table-near-chair-around-swimming-pool_74190-10019.jpg", buttonIcon: ArrowUpRight,
|
||||
},
|
||||
{
|
||||
title: "Real-time Alerts", description: "Stay informed with push notifications for community updates.", imageSrc: "http://img.b2bpic.net/free-photo/alarm-clock-time-management-concept_53876-120124.jpg", buttonIcon: ArrowUpRight,
|
||||
},
|
||||
{
|
||||
title: "Financial Tracking", description: "Transparent view of homeowner dues and project funds.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-office-desk-with-growth-chart-laptop_23-2148780610.jpg", buttonIcon: ArrowUpRight,
|
||||
},
|
||||
]}
|
||||
/>
|
||||
<TestimonialCardFifteen
|
||||
testimonial="The transition to the Casimiro digital system has been life-changing. Everything from guest entry to payment tracking is now frictionless."
|
||||
rating={5}
|
||||
author="— Elena Cruz, Resident Chairperson"
|
||||
avatars={[{ src: "http://img.b2bpic.net/free-photo/cheerful-businesswoman-office_1098-21907.jpg", alt: "Resident" }]}
|
||||
ratingAnimation="slide-up"
|
||||
avatarsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<MetricCardOne
|
||||
title="Efficiency At Scale"
|
||||
description=" measurable improvements to village operations through automation."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
metrics={[
|
||||
{ id: "time", value: "70%", title: "Time Saved", description: "In administrative processing", icon: CalendarDays },
|
||||
{ id: "security", value: "100%", title: "Log Accuracy", description: "Gate record precision", icon: UserCheck },
|
||||
{ id: "access", value: "24/7", title: "Uptime", description: "Available for all residents", icon: KeyRound },
|
||||
]}
|
||||
/>
|
||||
<FaqBase
|
||||
title="Common Questions"
|
||||
description="How our platform secures Casimiro Westville."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{ id: "1", title: "Is user data secure?", content: "Yes, all data is encrypted and managed with strictly controlled role-based access for admins and security personnel." },
|
||||
{ id: "2", title: "Can residents use mobile?", content: "Absolutely, the system is fully responsive and optimized for mobile browsers to allow on-the-go access." },
|
||||
{ id: "3", title: "How is gate access handled?", content: "Security personnel use digital logs synced in real-time, removing the need for manual paper record-keeping." },
|
||||
]}
|
||||
/>
|
||||
<ContactCTA
|
||||
tag="Ready to Upgrade?"
|
||||
title="Modernize Casimiro Westville Today"
|
||||
description="Contact us for a demonstration of how our management system creates a safer, efficient, and smarter community."
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
buttons={[
|
||||
{ text: "Schedule Demo", href: "#contact" },
|
||||
{ text: "Contact Admin", href: "#contact" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
<FooterBase
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarLayoutFloatingOverlay
|
||||
brandName="Casimiro Westville"
|
||||
navItems={[
|
||||
{ name: "Dashboard", id: "dashboard" },
|
||||
{ name: "Features", id: "features" },
|
||||
{ name: "Support", id: "support" },
|
||||
{ name: "Access", id: "contact" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
title="Modern Management for Casimiro Westville"
|
||||
description="A seamless, digital-first approach to village administration. Empowering residents, securing the perimeter, and simplifying community management."
|
||||
tag="Community Harmony"
|
||||
tagIcon={Sparkles}
|
||||
tagAnimation="slide-up"
|
||||
background={{ variant: "canvas-reveal" }}
|
||||
buttons={[
|
||||
{ text: "Get Started", href: "#contact" },
|
||||
{ text: "Learn More", href: "#features" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imagePosition="right"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/mock-up-animation-financial-stock-market-data-software-with-different-diagrams-graphs_482257-26904.jpg"
|
||||
/>
|
||||
</div>
|
||||
<div id="features" data-section="features">
|
||||
<FeatureCardSix
|
||||
title="Core Functionality"
|
||||
description="Smart tools engineered to simplify your daily operations at Casimiro Westville."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
features={[
|
||||
{
|
||||
title: "Resident Management", description: "Maintain updated resident databases, vehicle registry, and household profiles.", imageSrc: "http://img.b2bpic.net/free-photo/house-entrance-japan-building-with-fence_23-2149301077.jpg"},
|
||||
{
|
||||
title: "Security Operations", description: "Centralized monitoring of CCTVs, patrol routes, and emergency broadcast alerts.", imageSrc: "http://img.b2bpic.net/free-photo/security-guard-workspace_23-2150321694.jpg"},
|
||||
{
|
||||
title: "Access Control", description: "Manage gate entry credentials, visitor pass logs, and automated barrier synchronization.", imageSrc: "http://img.b2bpic.net/free-photo/afternoon-tea-set-with-latte-coffee-hot-tea-table-near-chair-around-swimming-pool_74190-10019.jpg"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="testimonials" data-section="testimonials">
|
||||
<TestimonialCardTwo
|
||||
title="Resident Stories"
|
||||
description="Hear from the people who call Casimiro Westville home."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
testimonials={[
|
||||
{
|
||||
id: "t1", name: "Elena Cruz", role: "Resident Chairperson", testimonial: "The transition to the Casimiro digital system has been life-changing. Everything from guest entry to payment tracking is now frictionless.", imageSrc: "http://img.b2bpic.net/free-photo/cheerful-businesswoman-office_1098-21907.jpg"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="metrics" data-section="metrics">
|
||||
<MetricCardSeven
|
||||
title="Efficiency At Scale"
|
||||
description="Measurable improvements to village operations through automation."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
animationType="slide-up"
|
||||
metrics={[
|
||||
{ id: "time", value: "70%", title: "Time Saved", items: ["In administrative processing"] },
|
||||
{ id: "security", value: "100%", title: "Log Accuracy", items: ["Gate record precision"] },
|
||||
{ id: "access", value: "24/7", title: "Uptime", items: ["Available for all residents"] },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqDouble
|
||||
title="Common Questions"
|
||||
description="How our platform secures Casimiro Westville."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
faqsAnimation="slide-up"
|
||||
faqs={[
|
||||
{ id: "1", title: "Is user data secure?", content: "Yes, all data is encrypted and managed with strictly controlled role-based access for admins and security personnel." },
|
||||
{ id: "2", title: "Can residents use mobile?", content: "Absolutely, the system is fully responsive and optimized for mobile browsers to allow on-the-go access." },
|
||||
{ id: "3", title: "How is gate access handled?", content: "Security personnel use digital logs synced in real-time, removing the need for manual paper record-keeping." },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Contact"
|
||||
title="Schedule Your Village Transformation Demo"
|
||||
description="Contact us for a demonstration of how our management system creates a safer, efficient, and smarter community."
|
||||
background={{ variant: "rotated-rays-animated" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
<FooterBaseReveal
|
||||
logoText="Casimiro Westville"
|
||||
copyrightText="© 2026 | Casimiro Westville Homes"
|
||||
columns={[
|
||||
@@ -177,4 +144,4 @@ export default function WebAgency2Page() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user