Merge version_2 into main #2
@@ -4,9 +4,7 @@ import ReactLenis from "lenis/react";
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
|
||||
import ContactSplitForm from "@/components/sections/contact/ContactSplitForm";
|
||||
import FeatureBento from "@/components/sections/feature/FeatureBento";
|
||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||
import { User, Briefcase, MapPin, Award } from "lucide-react";
|
||||
|
||||
export default function DashboardPage() {
|
||||
return (
|
||||
@@ -31,7 +29,6 @@ export default function DashboardPage() {
|
||||
{ name: "Dashboard", id: "/dashboard" },
|
||||
]}
|
||||
button={{ text: "Get a Quote", href: "/" }}
|
||||
animateOnLoad={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -48,30 +45,14 @@ export default function DashboardPage() {
|
||||
textarea={{ name: "bio", placeholder: "Tell us about your experience...", rows: 4 }}
|
||||
buttonText="Register Profile"
|
||||
mediaPosition="left"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="jobs" data-section="jobs">
|
||||
<FeatureBento
|
||||
title="Engineering Jobs Board"
|
||||
description="Browse open positions filtered by your province and expertise."
|
||||
textboxLayout="split"
|
||||
useInvertedBackground={true}
|
||||
animationType="slide-up"
|
||||
features={[
|
||||
{
|
||||
title: "Senior Mechanical Engineer", description: "BC | HVAC System Design", bentoComponent: "icon-info-cards", items: [{ icon: MapPin, label: "Province", value: "British Columbia" }, { icon: Award, label: "Specialty", value: "Mechanical" }]
|
||||
},
|
||||
{
|
||||
title: "Electrical Project Lead", description: "ON | Industrial Automation", bentoComponent: "icon-info-cards", items: [{ icon: MapPin, label: "Province", value: "Ontario" }, { icon: Award, label: "Specialty", value: "Electrical" }]
|
||||
}
|
||||
]}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterMedia
|
||||
logoText="AirPro HVAC"
|
||||
videoSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/video.mp4"
|
||||
columns={[
|
||||
{ title: "Navigation", items: [{ label: "Home", href: "/" }, { label: "Dashboard", href: "/dashboard" }] }
|
||||
]}
|
||||
@@ -80,4 +61,4 @@ export default function DashboardPage() {
|
||||
</ReactLenis>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -7,12 +7,9 @@ import HeroOverlay from "@/components/sections/hero/HeroOverlay";
|
||||
import MetricSplitMediaAbout from "@/components/sections/about/MetricSplitMediaAbout";
|
||||
import FeatureCardOne from "@/components/sections/feature/FeatureCardOne";
|
||||
import FeatureBorderGlow from "@/components/sections/feature/featureBorderGlow/FeatureBorderGlow";
|
||||
import FeatureCardEight from "@/components/sections/feature/FeatureCardEight";
|
||||
import TestimonialCardThirteen from "@/components/sections/testimonial/TestimonialCardThirteen";
|
||||
import FaqSplitText from "@/components/sections/faq/FaqSplitText";
|
||||
import ContactCTA from "@/components/sections/contact/ContactCTA";
|
||||
import FooterMedia from "@/components/sections/footer/FooterMedia";
|
||||
import { ShieldCheck, Wrench, DollarSign, Phone, Users, FileText, Database } from "lucide-react";
|
||||
import { ShieldCheck, Phone, Database, FileText } from "lucide-react";
|
||||
|
||||
export default function HvacPage() {
|
||||
return (
|
||||
@@ -39,7 +36,6 @@ export default function HvacPage() {
|
||||
{ name: "Contact", id: "contact" },
|
||||
]}
|
||||
button={{ text: "Support", href: "#contact" }}
|
||||
animateOnLoad={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -51,7 +47,6 @@ export default function HvacPage() {
|
||||
{ text: "Manage Users", href: "#users" },
|
||||
{ text: "View Documentation", href: "#database" },
|
||||
]}
|
||||
buttonAnimation="slide-up"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-1.jpg"
|
||||
imageAlt="Control panel dashboard interface"
|
||||
showDimOverlay={true}
|
||||
@@ -70,6 +65,7 @@ export default function HvacPage() {
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-2.jpg"
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -78,13 +74,14 @@ export default function HvacPage() {
|
||||
title="Content Management"
|
||||
description="Effortlessly manage your digital assets, web copy, and multimedia elements through our centralized CMS module."
|
||||
features={[
|
||||
{ title: "Asset Management", description: "Upload and organize media, documents, and promotional graphics with ease." },
|
||||
{ title: "Version Control", description: "Track changes to site content with automated versioning and rollback capabilities." },
|
||||
{ title: "SEO Optimization", description: "Update meta-tags and descriptions in real-time to maintain high search visibility." },
|
||||
{ title: "Asset Management", description: "Upload and organize media, documents, and promotional graphics with ease.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-1.jpg" },
|
||||
{ title: "Version Control", description: "Track changes to site content with automated versioning and rollback capabilities.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-2.jpg" },
|
||||
{ title: "SEO Optimization", description: "Update meta-tags and descriptions in real-time to maintain high search visibility.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/templates/hvac/img-3.jpg" },
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -99,6 +96,7 @@ export default function HvacPage() {
|
||||
]}
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -112,6 +110,7 @@ export default function HvacPage() {
|
||||
{ text: "Create Support Ticket", href: "#contact" },
|
||||
]}
|
||||
background={{ variant: "plain" }}
|
||||
useInvertedBackground={false}
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -123,7 +122,6 @@ export default function HvacPage() {
|
||||
{ title: "Admin", items: [{ label: "Dashboard", href: "#" }, { label: "Reports", href: "#" }] },
|
||||
{ title: "Legal", items: [{ label: "Data Policy", href: "#" }, { label: "Privacy", href: "#" }] },
|
||||
]}
|
||||
copyrightText="© 2026 | Admin Control System"
|
||||
/>
|
||||
</div>
|
||||
</ReactLenis>
|
||||
|
||||
Reference in New Issue
Block a user