@@ -4,8 +4,7 @@ import { motion } from "framer-motion";
44import { BlurImage } from "@/components/ui/blur-image" ;
55import { TrendingUp , Shield , Award , Zap } from "lucide-react" ;
66import { GradientBlob } from "@/components/ui/GradientBlob" ;
7- import { WhatsAppButton } from "@/components/ui/WhatsAppButton" ;
8- import { Card , CardContent , CardHeader } from "@/components/ui/card" ;
7+ import { PageSegue } from "@/components/ui/PageSegue" ;
98import { siteContent } from "@/lib/content" ;
109
1110// Static Image Imports
@@ -222,13 +221,53 @@ export default function Home() {
222221 </ motion . div >
223222 </ div >
224223
224+ { /* Chinese Language Section */ }
225+ < div className = "grid mb-24 md:grid-cols-2 gap-12 items-center" >
226+ < div className = "order-2 md:order-1" >
227+ < motion . div
228+ initial = { { opacity : 0 , scale : 0.9 } }
229+ whileInView = { { opacity : 1 , scale : 1 } }
230+ viewport = { { once : true , margin : "-100px" } }
231+ transition = { { duration : 0.5 } }
232+ className = "relative rounded-3xl overflow-hidden shadow-xl border border-border group"
233+ >
234+ < div className = "aspect-video relative" >
235+ < BlurImage src = { shanghaiImg } alt = "Shanghai Skyline - China's Rise" fill className = "object-cover group-hover:scale-105 transition-transform duration-700" placeholder = "blur" />
236+ < div className = "absolute inset-0 bg-gradient-to-t from-black/20 to-transparent z-10" />
237+ </ div >
238+ </ motion . div >
239+ </ div >
240+ < div className = "order-1 md:order-2" >
241+ < h2 className = "text-3xl font-display font-bold mb-6" > Rise with a < span className = "text-primary" > Superpower</ span > </ h2 >
242+ < p className = "text-muted-foreground text-lg leading-relaxed mb-6" >
243+ China is not just the world's factory; it is becoming the world's laboratory. Speaking Chinese is no longer just a "nice-to-have"—it is a critical career asset for the next 50 years.
244+ </ p >
245+ < ul className = "space-y-4" >
246+ < li className = "flex items-start gap-3" >
247+ < TrendingUp className = "w-6 h-6 text-primary mt-1" />
248+ < div >
249+ < h4 className = "font-bold text-foreground" > Economic Gravity</ h4 >
250+ < p className = "text-sm text-muted-foreground" > As trade between Indonesia and China explodes, bilingual engineers are the most sought-after talent in Jakarta.</ p >
251+ </ div >
252+ </ li >
253+ < li className = "flex items-start gap-3" >
254+ < Shield className = "w-6 h-6 text-primary mt-1" />
255+ < div >
256+ < h4 className = "font-bold text-foreground" > Future-Proof Career</ h4 >
257+ < p className = "text-sm text-muted-foreground" > Mastering Mandarin (aiming for HSK 5/6) opens doors to multinational giants like Huawei, BYD, and TikTok.</ p >
258+ </ div >
259+ </ li >
260+ </ ul >
261+ </ div >
262+ </ div >
263+
225264 { /* Rankings Table */ }
226- < div className = "mb-24 " >
265+ < div className = "mb-12 " >
227266 < div className = "text-center mb-8" >
267+ < h2 className = "text-3xl font-display font-bold mb-4" > Other Metrics</ h2 >
228268 < p className = "text-xs font-medium uppercase tracking-wider text-muted-foreground mb-4" >
229269 Global Recognition < span className = "text-muted-foreground/50" > (Multiple Rankings)</ span >
230270 </ p >
231- < h2 className = "text-3xl font-display font-bold mb-4" > Other Metrics</ h2 >
232271 </ div >
233272
234273 { /* Mobile Card Layout */ }
@@ -295,62 +334,15 @@ export default function Home() {
295334 </ table >
296335 </ motion . div >
297336 </ div >
298-
299- { /* Chinese Language Section */ }
300- < div className = "grid md:grid-cols-2 gap-12 items-center" >
301- < div className = "order-2 md:order-1" >
302- < motion . div
303- initial = { { opacity : 0 , scale : 0.9 } }
304- whileInView = { { opacity : 1 , scale : 1 } }
305- viewport = { { once : true , margin : "-100px" } }
306- transition = { { duration : 0.5 } }
307- className = "relative rounded-3xl overflow-hidden shadow-xl border border-border group"
308- >
309- < div className = "aspect-video relative" >
310- < BlurImage src = { shanghaiImg } alt = "Shanghai Skyline - China's Rise" fill className = "object-cover group-hover:scale-105 transition-transform duration-700" placeholder = "blur" />
311- < div className = "absolute inset-0 bg-gradient-to-t from-black/20 to-transparent z-10" />
312- </ div >
313- </ motion . div >
314- </ div >
315- < div className = "order-1 md:order-2" >
316- < h2 className = "text-3xl font-display font-bold mb-6" > Rise with a < span className = "text-primary" > Superpower</ span > </ h2 >
317- < p className = "text-muted-foreground text-lg leading-relaxed mb-6" >
318- China is not just the world's factory; it is becoming the world's laboratory. Speaking Chinese is no longer just a "nice-to-have"—it is a critical career asset for the next 50 years.
319- </ p >
320- < ul className = "space-y-4" >
321- < li className = "flex items-start gap-3" >
322- < TrendingUp className = "w-6 h-6 text-primary mt-1" />
323- < div >
324- < h4 className = "font-bold text-foreground" > Economic Gravity</ h4 >
325- < p className = "text-sm text-muted-foreground" > As trade between Indonesia and China explodes, bilingual engineers are the most sought-after talent in Jakarta.</ p >
326- </ div >
327- </ li >
328- < li className = "flex items-start gap-3" >
329- < Shield className = "w-6 h-6 text-primary mt-1" />
330- < div >
331- < h4 className = "font-bold text-foreground" > Future-Proof Career</ h4 >
332- < p className = "text-sm text-muted-foreground" > Mastering Mandarin (aiming for HSK 5/6) opens doors to multinational giants like Huawei, BYD, and TikTok.</ p >
333- </ div >
334- </ li >
335- </ ul >
336- </ div >
337- </ div >
338337 </ div >
339338 </ section >
340339
341- { /* CTA Section */ }
342- < section className = "py-24 px-6 relative overflow-hidden" >
343- < div className = "absolute inset-0 bg-primary/5 -skew-y-3 transform origin-top-left scale-110" />
344- < div className = "container mx-auto max-w-4xl relative z-10 text-center" >
345- < h2 className = "text-4xl md:text-5xl font-display font-bold mb-6" > Ready to Start?</ h2 >
346- < p className = "text-xl text-muted-foreground mb-10 max-w-2xl mx-auto" >
347- Join a community of 400+ Indonesian students at one of China's most prestigious engineering universities.
348- </ p >
349- < div className = "flex justify-center" >
350- < WhatsAppButton />
351- </ div >
352- </ div >
353- </ section >
340+ < PageSegue
341+ title = "What Actually Matters"
342+ description = "Beyond the numbers, there's a vibrant community, unforgettable experiences, and a life-changing journey waiting for you."
343+ buttonText = "Explore Campus Life"
344+ buttonHref = "/campus-life"
345+ />
354346 </ div >
355347 ) ;
356348}
0 commit comments