Skip to content

Commit be9eba5

Browse files
committed
fix some margins for all pages
1 parent f3da523 commit be9eba5

5 files changed

Lines changed: 10 additions & 11 deletions

File tree

app/admissions/page.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,11 +49,10 @@ export default function AdmissionsPage() {
4949
</div>
5050

5151
{/* CRITICAL ALERT - CSCA */}
52-
<motion.div
52+
<motion.div className="mb-24 rounded-3xl overflow-hidden border-l-8 border-amber-500 bg-amber-50/80 backdrop-blur-sm shadow-lg"
5353
initial={{ opacity: 0, scale: 0.95 }}
5454
animate={{ opacity: 1, scale: 1 }}
5555
transition={{ delay: 0.2 }}
56-
className="mb-24 rounded-3xl overflow-hidden border-l-8 border-amber-500 bg-amber-50/80 backdrop-blur-sm shadow-lg"
5756
>
5857
<div className="p-8 md:p-12">
5958
<div className="flex items-start gap-4 mb-6">
@@ -170,7 +169,7 @@ export default function AdmissionsPage() {
170169
className={`relative md:grid md:grid-cols-2 md:gap-8 ${index === timeline.length - 1 ? "" : "mb-12"}`}
171170
>
172171
{/* Mobile: left dot */}
173-
<div className="md:hidden absolute left-[3px] top-2 w-2.5 h-2.5 rounded-full bg-primary border-2 border-white shadow-sm z-10" />
172+
<div className="md:hidden absolute left-0.75 top-2 w-2.5 h-2.5 rounded-full bg-primary border-2 border-white shadow-sm z-10" />
174173

175174
{/* Desktop: center dot */}
176175
<div className="hidden md:block absolute left-1/2 top-2 w-3 h-3 rounded-full bg-primary border-4 border-white shadow-sm -translate-x-1/2 z-10" />

app/community/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -407,7 +407,7 @@ export default function CommunityPage() {
407407
</div>
408408

409409
{/* Photo Gallery */}
410-
<div className="mb-24">
410+
<div className="mb-32">
411411
<h2 className="text-3xl font-display font-bold mb-12 text-center">Life at BIT</h2>
412412
<div className="columns-2 md:columns-3 gap-4 md:gap-6">
413413
{galleryImages.map((item, idx) => (

app/faq/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ export default function FAQPage() {
214214
</div>
215215

216216
{/* CTA */}
217-
<div className="mt-20 text-center bg-white/50 backdrop-blur-sm border border-white/60 rounded-3xl p-12 shadow-sm">
217+
<div className="mt-32 text-center bg-white/50 backdrop-blur-sm border border-white/60 rounded-3xl p-12 shadow-sm">
218218
<h2 className="text-2xl font-display font-bold mb-4">Still have questions?</h2>
219219
<p className="text-muted-foreground mb-8">
220220
Our student team is ready to chat. No chatbots, just real seniors.

app/page.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export default function Home() {
5858
insightDescription: "Being on the cusp of the Top 100 globally signals immense research productivity."
5959
}
6060
];
61-
61+
6262
return (
6363
<div className="relative overflow-hidden">
6464
{/* Animated Breathing Background Blobs */}
@@ -67,7 +67,7 @@ export default function Home() {
6767
<GradientBlob variant="accent" className="bottom-0 left-1/4 w-[400px] h-[400px] opacity-20" delay={4} />
6868

6969
{/* Hero Section */}
70-
<section className="relative pt-28 pb-20 md:pt-22 md:pb-20 px-6">
70+
<section className="relative pt-28 pb-32 px-6">
7171
<div className="container mx-auto max-w-7xl">
7272
<div className="grid lg:grid-cols-2 gap-12 items-center">
7373

@@ -157,7 +157,7 @@ export default function Home() {
157157

158158

159159

160-
<section className="py-12 px-6 relative">
160+
<section className="pb-32 px-6 relative">
161161
<div className="container mx-auto max-w-6xl">
162162
{/* Rankings Table */}
163163
<div className="mb-12">
@@ -286,7 +286,7 @@ export default function Home() {
286286
</motion.div>
287287
</div>
288288
<div className="order-1 md:order-2">
289-
<h2 className="text-3xl font-display font-bold mb-6">China{" "}
289+
<h2 className="text-3xl font-display font-bold mb-6">China is{" "}
290290
<span className="text-primary">
291291
<ShinyText
292292
text="the Future"
@@ -300,7 +300,7 @@ export default function Home() {
300300
</span>
301301
</h2>
302302
<p className="text-muted-foreground text-lg leading-relaxed mb-6">
303-
China is not just the world&apos;s factory; it is becoming the world&apos;s laboratory. Speaking Chinese is no longer just a &quot;nice-to-have&quot;—it is a critical career asset for the next 50 years.
303+
China has shown that it is not just the world&apos;s factory; It is becoming the world&apos;s laboratory. Speaking Chinese is no longer just a &quot;language&quot; but a critical career asset for the next 50 years.
304304
</p>
305305
<ul className="space-y-4">
306306
<li className="flex items-start gap-3">

app/scholarship-cost/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default function ScholarshipCostPage() {
1616
<div className="container mx-auto px-6 max-w-6xl relative z-10">
1717

1818
{/* Hero */}
19-
<div className="text-center max-w-3xl mx-auto mb-20">
19+
<div className="text-center max-w-3xl mt-28 mx-auto mb-20">
2020
<motion.h1
2121
initial={{ opacity: 0, y: 20 }}
2222
animate={{ opacity: 1, y: 0 }}

0 commit comments

Comments
 (0)