1 Commits

Author SHA1 Message Date
3d84977f39 Update src/app/page.tsx 2026-04-15 13:39:14 +00:00

View File

@@ -2,17 +2,14 @@
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import ReactLenis from "lenis/react"; import ReactLenis from "lenis/react";
import BlogCardThree from '@/components/sections/blog/BlogCardThree';
import ContactCenter from '@/components/sections/contact/ContactCenter'; import ContactCenter from '@/components/sections/contact/ContactCenter';
import FaqDouble from '@/components/sections/faq/FaqDouble'; import FaqDouble from '@/components/sections/faq/FaqDouble';
import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive'; import FeatureCardTwentyFive from '@/components/sections/feature/FeatureCardTwentyFive';
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel'; import HeroBillboardRotatedCarousel from '@/components/sections/hero/HeroBillboardRotatedCarousel';
import MetricCardTwo from '@/components/sections/metrics/MetricCardTwo';
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import SplitAbout from '@/components/sections/about/SplitAbout'; import SplitAbout from '@/components/sections/about/SplitAbout';
import TeamCardTwo from '@/components/sections/team/TeamCardTwo'; import TeamCardTwo from '@/components/sections/team/TeamCardTwo';
import TestimonialCardThirteen from '@/components/sections/testimonial/TestimonialCardThirteen';
import { BarChart2, Edit3, Zap } from "lucide-react"; import { BarChart2, Edit3, Zap } from "lucide-react";
export default function GamingPage() { export default function GamingPage() {
@@ -65,6 +62,7 @@ export default function GamingPage() {
<div id="about" data-section="about"> <div id="about" data-section="about">
<SplitAbout <SplitAbout
textboxLayout="split" textboxLayout="split"
useInvertedBackground={false}
title="Why Choose Fabric?" title="Why Choose Fabric?"
description="Fabric is a lightweight, modular modding toolchain for Minecraft. It offers faster update times, a cleaner development experience, and modular design that lets you use only the features you need." description="Fabric is a lightweight, modular modding toolchain for Minecraft. It offers faster update times, a cleaner development experience, and modular design that lets you use only the features you need."
bulletPoints={[ bulletPoints={[
@@ -113,6 +111,8 @@ export default function GamingPage() {
<TeamCardTwo <TeamCardTwo
animationType="slide-up" animationType="slide-up"
gridVariant="four-items-2x2-equal-grid" gridVariant="four-items-2x2-equal-grid"
textboxLayout="default"
useInvertedBackground={false}
title="Core Contributors" title="Core Contributors"
description="Meet the passionate individuals keeping the Fabric ecosystem healthy and thriving." description="Meet the passionate individuals keeping the Fabric ecosystem healthy and thriving."
members={[ members={[
@@ -127,6 +127,7 @@ export default function GamingPage() {
<div id="faq" data-section="faq"> <div id="faq" data-section="faq">
<FaqDouble <FaqDouble
title="Fabric Modding FAQ" title="Fabric Modding FAQ"
description="Common questions about the Fabric toolchain."
faqs={[ faqs={[
{ id: "1", title: "Is Fabric compatible with Forge?", content: "Fabric and Forge are distinct ecosystems. Mods for one will not run natively on the other, though bridges are available." }, { id: "1", title: "Is Fabric compatible with Forge?", content: "Fabric and Forge are distinct ecosystems. Mods for one will not run natively on the other, though bridges are available." },
{ id: "2", title: "How hard is it to switch?", content: "Fabric's modern approach makes it easy to learn for anyone with basic Java skills." }, { id: "2", title: "How hard is it to switch?", content: "Fabric's modern approach makes it easy to learn for anyone with basic Java skills." },
@@ -134,6 +135,7 @@ export default function GamingPage() {
]} ]}
faqsAnimation="slide-up" faqsAnimation="slide-up"
textboxLayout="default" textboxLayout="default"
useInvertedBackground={false}
/> />
</div> </div>
@@ -143,6 +145,7 @@ export default function GamingPage() {
title="Join our Hub" title="Join our Hub"
description="Sign up to stay updated on the latest Fabric developments and news." description="Sign up to stay updated on the latest Fabric developments and news."
background={{ variant: "sparkles-gradient" }} background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
/> />
</div> </div>