1- import Navbar from "@/components/Navbar" ;
2- import { SectionHero } from "@/components/sections/SectionHero" ;
3- import { Suspense } from "react" ;
4-
5- export default function AIGroupPage ( ) {
6- const badges = [
7- { label : "Machine Learning" , color : "bg-green-500/10 text-green-300" } ,
8- { label : "Deep Learning" , color : "bg-emerald-500/10 text-emerald-300" } ,
9- { label : "Computer Vision" , color : "bg-green-500/10 text-green-300" } ,
10- { label : "NLP" , color : "bg-emerald-500/10 text-emerald-300" } ,
11- { label : "Neural Networks" , color : "bg-green-500/10 text-green-300" } ,
12- { label : "Data Science" , color : "bg-emerald-500/10 text-emerald-300" } ,
13- ] ;
14-
15- return (
16- < Suspense fallback = { < div > Loading...</ div > } >
17- < main className = "min-h-screen bg-neutral-950" >
18- < Navbar />
19- < SectionHero
20- title = "AI Group"
21- subtitle = "Shaping Tomorrow's Intelligence"
22- description = "Dive into the fascinating world of artificial intelligence with our dedicated community. Explore cutting-edge AI technologies, machine learning algorithms, and innovative applications that are transforming industries."
23- badges = { badges }
24- />
25- { /* Other sections will go here */ }
26- </ main >
27- </ Suspense >
28- ) ;
29- }
1+ import Navbar from "@/components/Navbar" ;
2+ import { SectionHero } from "@/components/sections/SectionHero" ;
3+ import { ResearchProjects } from "@/components/ai-group/ResearchProjects" ;
4+ import { TeamMembers } from "@/components/ai-group/TeamMembers" ;
5+ import { ResourcesHub } from "@/components/ai-group/ResourcesHub" ;
6+ import { Events } from "@/components/ai-group/Events" ;
7+ import { ProjectGallery } from "@/components/ai-group/ProjectGallery" ;
8+ import { JoinCTA } from "@/components/ai-group/JoinCTA" ;
9+ import { Suspense } from "react" ;
10+
11+ export default function AIGroupPage ( ) {
12+ const badges = [
13+ { label : "Machine Learning" , color : "bg-green-500/10 text-green-300" } ,
14+ { label : "Deep Learning" , color : "bg-emerald-500/10 text-emerald-300" } ,
15+ { label : "Computer Vision" , color : "bg-green-500/10 text-green-300" } ,
16+ { label : "NLP" , color : "bg-emerald-500/10 text-emerald-300" } ,
17+ { label : "Neural Networks" , color : "bg-green-500/10 text-green-300" } ,
18+ { label : "Data Science" , color : "bg-emerald-500/10 text-emerald-300" } ,
19+ ] ;
20+
21+ return (
22+ < Suspense fallback = { < div > Loading...</ div > } >
23+ < main className = "min-h-screen bg-neutral-950" >
24+ < Navbar />
25+ < SectionHero
26+ title = "AI Group"
27+ subtitle = "Shaping Tomorrow's Intelligence"
28+ description = "Dive into the fascinating world of artificial intelligence with our dedicated community. Explore cutting-edge AI technologies, machine learning algorithms, and innovative applications that are transforming industries."
29+ badges = { badges }
30+ />
31+ < ResearchProjects />
32+ < TeamMembers />
33+ < ResourcesHub />
34+ < Events />
35+ < ProjectGallery />
36+ < JoinCTA />
37+ </ main >
38+ </ Suspense >
39+ ) ;
40+ }
0 commit comments