diff --git a/src/app/videos/page.tsx b/src/app/videos/page.tsx new file mode 100644 index 0000000..e733c25 --- /dev/null +++ b/src/app/videos/page.tsx @@ -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 ( + + + +
+ +
+ +
+ +
+ +
+ +
+ + +
+ ); +}