Update src/app/page.tsx

This commit is contained in:
2026-05-15 14:07:54 +00:00
parent 70d75b9168
commit 303a2b4ab9

View File

@@ -5,7 +5,6 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarLayoutFloatingOverlay from "@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay";
import HeroCentered from "@/components/sections/hero/HeroCentered";
import FeatureCardTwentySeven from "@/components/sections/feature/FeatureCardTwentySeven";
import ProductCardTwo from "@/components/sections/product/ProductCardTwo";
import TeamCardEleven from "@/components/sections/team/TeamCardEleven";
import ContactCenter from "@/components/sections/contact/ContactCenter";
import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal";
@@ -31,7 +30,6 @@ export default function BloxlyLandingPage() {
brandName="Bloxly"
navItems={[
{ name: "Capabilities", id: "capabilities" },
{ name: "Product", id: "product" },
{ name: "Manifesto", id: "manifesto" },
{ name: "Beta", id: "beta" },
]}
@@ -79,22 +77,6 @@ export default function BloxlyLandingPage() {
/>
</div>
<div id="product">
<ProductCardTwo
title="Product Showcase"
description="The dashboard where your next hit game comes to life."
gridVariant="asymmetric-60-wide-40-narrow"
animationType="slide-up"
textboxLayout="split"
useInvertedBackground={false}
products={[
{ id: "p1", brand: "Bloxly", name: "Code Editor Pro", price: "Free", rating: 5, reviewCount: "1.2k", imageSrc: "https://images.unsplash.com/photo-1633356122544-f134324a6cee?q=80&w=800" },
{ id: "p2", brand: "Bloxly", name: "Visual Logic Suite", price: "Included", rating: 5, reviewCount: "800", imageSrc: "https://images.unsplash.com/photo-1555949963-aa90dcee9978?q=80&w=800" },
{ id: "p3", brand: "Bloxly", name: "Deployment Hub", price: "Free", rating: 5, reviewCount: "500", imageSrc: "https://images.unsplash.com/photo-1629738233306-bf105151b752?q=80&w=800" }
]}
/>
</div>
<div id="manifesto">
<TeamCardEleven
title="Manifesto: Own What You Build"
@@ -131,4 +113,4 @@ export default function BloxlyLandingPage() {
</ReactLenis>
</ThemeProvider>
);
}
}