Update src/app/academics/page.tsx

This commit is contained in:
2026-05-20 17:40:50 +00:00
parent 1d7dbd8ee8
commit b441f707d1

View File

@@ -4,27 +4,31 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import FeatureCardThree from '@/components/sections/feature/featureCardThree/FeatureCardThree';
import FooterCard from '@/components/sections/footer/FooterCard';
import FooterSimple from '@/components/sections/footer/FooterSimple';
export default function AcademicsPage() {
return (
<ThemeProvider>
<ThemeProvider defaultButtonVariant="hover-bubble" defaultTextAnimation="entrance-slide" borderRadius="rounded" contentWidth="medium" sizing="medium" background="circleGradient" cardStyle="glass-elevated" primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="normal">
<ReactLenis root>
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Academics", id: "/academics" },
{ name: "Admissions", id: "/admissions" },
{ name: "Contact", id: "/#contact" },
]}
brandName="Vinnys Street Food"
/>
<div className="pt-32 pb-20">
<div id="nav" data-section="nav">
<NavbarStyleCentered
navItems={[
{ name: "Home", id: "/" },
{ name: "Academics", id: "/academics" },
{ name: "Admissions", id: "/admissions" },
{ name: "Contact", id: "/contact" },
]}
brandName="Vinnys Street Food"
/>
</div>
<div id="features" data-section="features">
<FeatureCardThree
title="Our Programs"
description="Explore our wide range of culinary and business courses designed for future industry leaders."
gridVariant="three-columns-all-equal-width"
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
features={[
{ title: "Culinary Arts", description: "Master the art of cooking with hands-on training.", imageSrc: "http://img.b2bpic.net/free-photo/top-view-tacos-with-vegetables-meat_23-2148750432.jpg" },
{ title: "Kitchen Management", description: "Efficiently run a professional kitchen team.", imageSrc: "http://img.b2bpic.net/free-photo/focused-master-chef-wearing-uniform-cooking-delicious-beef-steak-kitchen-restaurant_613910-18983.jpg" },
@@ -32,8 +36,10 @@ export default function AcademicsPage() {
]}
/>
</div>
<FooterCard logoText="Vinnys Street Food" />
<div id="footer" data-section="footer">
<FooterSimple columns={[{ title: "Company", items: [{ label: "About" }] }]} bottomLeftText="© 2024 Vinnys Street Food" />
</div>
</ReactLenis>
</ThemeProvider>
);
}
}