diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx new file mode 100644 index 0000000..ee70c43 --- /dev/null +++ b/src/app/about/page.tsx @@ -0,0 +1,84 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import TestimonialAboutCard from '@/components/sections/about/TestimonialAboutCard'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import { Heart, Rocket } from "lucide-react"; + +export default function AboutPage() { + return ( + + + +
+ +
+ + +
+ ); +} diff --git a/src/app/events/page.tsx b/src/app/events/page.tsx new file mode 100644 index 0000000..29d46e2 --- /dev/null +++ b/src/app/events/page.tsx @@ -0,0 +1,96 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import BlogCardThree from '@/components/sections/blog/BlogCardThree'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import { Calendar } from "lucide-react"; + +export default function EventsPage() { + return ( + + + +
+ +
+ + +
+ ); +} diff --git a/src/app/features/page.tsx b/src/app/features/page.tsx new file mode 100644 index 0000000..ee18662 --- /dev/null +++ b/src/app/features/page.tsx @@ -0,0 +1,111 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import NavbarLayoutFloatingInline from '@/components/navbar/NavbarLayoutFloatingInline'; +import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; +import FooterBase from '@/components/sections/footer/FooterBase'; +import { Code, Users, Lightbulb, Award, Star } from "lucide-react"; + +export default function FeaturesPage() { + return ( + + + +
+ +
+ + +
+ ); +} diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 688a68f..fb9cc5b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,46 +1,22 @@ import type { Metadata } from "next"; -import { Inter, Open_Sans } from "next/font/google"; +import { Inter } 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 inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const openSans = Open_Sans({ - variable: "--font-open-sans", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Computer Club | Tech Community & Learning Hub", description: "Join our vibrant tech community. Workshops, events, mentorship, and collaborative projects for aspiring and experienced developers.", keywords: "computer club, tech community, programming, workshops, hackathon, networking", metadataBase: new URL("https://computerclub.com"), - alternates: { - canonical: "https://computerclub.com"}, - openGraph: { - title: "Computer Club | Tech Community & Learning Hub", description: "Join our vibrant tech community. Workshops, events, mentorship, and collaborative projects.", url: "https://computerclub.com", siteName: "Computer Club", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/technology-unicorn-venture-workspace-with-pc-used-conduct-code-reviews_482257-118729.jpg", alt: "Computer Club Community"}, - ], - }, - twitter: { - card: "summary_large_image", title: "Computer Club | Tech Community", description: "Join our vibrant tech community for workshops, events, and collaboration.", images: ["http://img.b2bpic.net/free-photo/coworkers-team-working-brainstorming-concept_329181-12072.jpg"], - }, -}; + title: "Computer Club", description: "Join a vibrant community of tech enthusiasts, innovators, and learners."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}