Add src/app/videos/page.tsx

This commit is contained in:
2026-03-08 10:01:18 +00:00
parent e629a1fada
commit 3c2da6b345

151
src/app/videos/page.tsx Normal file
View File

@@ -0,0 +1,151 @@
"use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingInline from "@/components/navbar/NavbarLayoutFloatingInline";
import HeroBillboardScroll from "@/components/sections/hero/HeroBillboardScroll";
import FeatureCardTwentySix from "@/components/sections/feature/FeatureCardTwentySix";
import ContactFaq from "@/components/sections/contact/ContactFaq";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
import { Phone, Play } from "lucide-react";
export default function VideosPage() {
return (
<ThemeProvider
defaultButtonVariant="icon-arrow"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="smallMedium"
sizing="mediumLarge"
background="circleGradient"
cardStyle="glass-elevated"
primaryButtonStyle="gradient"
secondaryButtonStyle="solid"
headingFontWeight="extrabold"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Arpita Consultancy"
navItems={[
{ name: "Products", id: "/" },
{ name: "About", id: "/about" },
{ name: "Testimonials", id: "/" },
{ name: "Contact", id: "/" },
{ name: "Videos", id: "/videos" },
{ name: "Photos", id: "/photos" }
]}
button={{ text: "Get Quote", href: "/" }}
animateOnLoad={true}
/>
</div>
<div id="hero" data-section="hero">
<HeroBillboardScroll
title="Video Gallery"
description="Explore our collection of machinery demonstrations, installations, and client success stories in action."
tag="Watch Our Work"
background={{ variant: "plain" }}
imageSrc="http://img.b2bpic.net/free-photo/agricultural-silos-building-exterior_146671-19101.jpg?_wi=1"
imageAlt="Video Gallery"
buttons={[
{ text: "Browse Gallery", href: "#videos" },
{ text: "Request Demo", href: "/" }
]}
tagAnimation="slide-up"
buttonAnimation="slide-up"
/>
</div>
<div id="videos" data-section="videos">
<FeatureCardTwentySix
title="Featured Videos"
description="Watch demonstrations of our machinery solutions, installation processes, and customer testimonials"
tag="Video Gallery"
features={[
{
title: "Beverage Bottling System in Action", description: "Watch our state-of-the-art beverage bottling and filling system operating at full capacity.", videoSrc: "http://img.b2bpic.net/free-photo/engineers-working-smart-factory-collecting-analyzing-data_482257-120556.jpg", buttonIcon: Play,
buttonHref: "#"
},
{
title: "Rice Mill Installation Process", description: "See the complete installation and commissioning of our rice mill grinding equipment.", imageSrc: "http://img.b2bpic.net/free-photo/wheat-seeds-feeding-plat-animals_23-2148315343.jpg", buttonIcon: Play,
buttonHref: "#"
},
{
title: "Flour Mill Operational Demo", description: "Comprehensive demonstration of our flour mill processing machine capabilities and efficiency.", imageSrc: "http://img.b2bpic.net/free-photo/agricultural-silos-building-exterior_146671-19107.jpg", buttonIcon: Play,
buttonHref: "#"
},
{
title: "Pasteurization Equipment Overview", description: "Technical overview of our advanced pasteurization equipment and safety features.", imageSrc: "http://img.b2bpic.net/free-photo/worker-production-department-make-set-up-line-while-standing-near-equipment-dairy-factory_645730-209.jpg", buttonIcon: Play,
buttonHref: "#"
},
{
title: "Industrial Mixer & Blender Demo", description: "Watch our industrial mixing and blending equipment deliver precision and consistency.", imageSrc: "http://img.b2bpic.net/free-photo/woman-preparing-fresh-orange-juice-breakfast-kitchen_169016-49618.jpg", buttonIcon: Play,
buttonHref: "#"
},
{
title: "Mineral Water Processing Line Setup", description: "Complete walkthrough of our mineral water production line installation and testing procedures.", imageSrc: "http://img.b2bpic.net/free-photo/engineers-working-smart-factory-collecting-analyzing-data_482257-120556.jpg?_wi=2", buttonIcon: Play,
buttonHref: "#"
}
]}
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="contact" data-section="contact">
<ContactFaq
ctaTitle="Want to See More?"
ctaDescription="Contact us to request custom video demonstrations or discuss your machinery requirements."
ctaButton={{ text: "Request Video Demo", href: "https://wa.me/919876543210" }}
ctaIcon={Phone}
faqs={[
{
id: "1", title: "Can I request a custom video demonstration?", content: "Yes, we can create custom video demonstrations of specific machinery configurations tailored to your production needs. Contact our team to discuss your requirements and schedule a filming session."
},
{
id: "2", title: "Are there other video resources available?", content: "We regularly update our video library with machinery demonstrations, installation guides, maintenance tips, and customer success stories. Subscribe to stay updated with the latest content."
},
{
id: "3", title: "Can I use these videos for my business?", content: "Our videos are designed to showcase our machinery and expertise. For commercial use or partnerships, please contact us directly to discuss licensing options and collaboration opportunities."
}
]}
useInvertedBackground={false}
animationType="slide-up"
accordionAnimationType="smooth"
showCard={true}
/>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
columns={[
{
title: "Products", items: [
{ label: "Beverage Systems", href: "/" },
{ label: "Rice Mills", href: "/" },
{ label: "Flour Mills", href: "/" },
{ label: "Pasteurizers", href: "/" }
]
},
{
title: "Company", items: [
{ label: "About Us", href: "/about" },
{ label: "Contact", href: "/" },
{ label: "Service Centers", href: "#" },
{ label: "Careers", href: "#" }
]
},
{
title: "Support", items: [
{ label: "Technical Support", href: "/" },
{ label: "FAQ", href: "/" },
{ label: "Maintenance Plans", href: "#" },
{ label: "Warranty Info", href: "#" }
]
}
]}
copyrightText="© 2025 Arpita Consultancy. GST Verified Industrial Machinery Supplier. All Rights Reserved."
/>
</div>
</ThemeProvider>
);
}