diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx new file mode 100644 index 0000000..9485ab2 --- /dev/null +++ b/src/app/features/page.tsx @@ -0,0 +1,138 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple'; +import HeroBillboard from '@/components/sections/hero/HeroBillboard'; +import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import { BarChart3, Bell, CheckCircle, Clock, CreditCard, DollarSign, FileCheck, FileText, Award, Zap, TrendingUp } from 'lucide-react'; + +export default function FeaturesPage() { + return ( + + + +
+ +
+ +
+ +
+ + +
+ ); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index ba324e9..6ec5405 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,1422 +1,31 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Figtree } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const figtree = Figtree({ - variable: "--font-figtree", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Smart Tuition Pro | Institute Management Platform", description: "Centralize student management, attendance, assessments & fees. Empower teachers, engage students, streamline operations with Smart Tuition Pro.", keywords: "tuition management, education platform, student management system, attendance tracking, online assessments, fee collection", metadataBase: new URL("https://smarttuitionpro.com"), - alternates: { - canonical: "https://smarttuitionpro.com"}, - openGraph: { - title: "Smart Tuition Pro | Manage Your Coaching Institute Effortlessly", description: "Complete platform for student management, attendance, online testing, and fee collection", url: "https://smarttuitionpro.com", siteName: "Smart Tuition Pro", type: "website", images: [ - { - url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-modern-bright-dashboard-interface-for--1773131822223-ba9b7474.png", alt: "Smart Tuition Pro Dashboard"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Smart Tuition Pro | Institute Management Platform", description: "Streamline your coaching center with our comprehensive management platform", images: [ - "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AkLg4rroTBiyeEKem2OhQFuzv4/a-modern-bright-dashboard-interface-for--1773131822223-ba9b7474.png"], - }, - robots: { - index: true, - follow: true, - }, -}; + title: "Smart Tuition Pro", description: "Manage Your Entire Coaching Institute Effortlessly"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - {children} - + + {children}