Skip to content

Commit 9390c65

Browse files
committed
fixes loading issues on testimony cards in comunity tab and change to some text in page.tsx
1 parent c933197 commit 9390c65

4 files changed

Lines changed: 5 additions & 5 deletions

File tree

app/campus-life/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ export default function CampusLifePage() {
8989
transition={{ delay: 0.1 }}
9090
className="text-lg text-muted-foreground leading-relaxed"
9191
>
92-
Modern facilities. Incredible food. A community that feels like family. Located in Liangxiang, engineered for deep work.
92+
Modern facilities. Incredible food. A community that feels engineered for deep worklike family. Located in Liangxiang, Beijing.
9393
</motion.p>
9494
</div>
9595

app/community/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ export default function CommunityPage() {
122122
variants={containerVariants}
123123
initial="hidden"
124124
whileInView="visible"
125-
viewport={{ once: true, margin: "-100px" }}
125+
viewport={{ once: true }}
126126
className="grid md:grid-cols-2 gap-8 mb-32"
127127
>
128128
{pillars.map((pillar, idx) => (

app/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -355,8 +355,8 @@ export default function Home() {
355355
</section>
356356

357357
<PageSegue
358-
title="What Actually Matters"
359-
description="Beyond the numbers, there's a vibrant community, unforgettable experiences, and a life-changing journey waiting for you."
358+
title="Your BIT life"
359+
description={<>Want to get a glimpse of what your life will be like in BIT?</>}
360360
buttonText="Explore Campus Life"
361361
buttonHref="/campus-life"
362362
/>

components/ui/PageSegue.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { SquareArrowTopRight } from "@/components/ui/SquareArrowTopRight";
55

66
interface PageSegueProps {
77
title: string;
8-
description: string;
8+
description: React.ReactNode;
99
buttonText: string;
1010
buttonHref: string;
1111
}

0 commit comments

Comments
 (0)