4 Commits

Author SHA1 Message Date
1e3ada1d49 Update src/app/page.tsx 2026-01-24 20:44:24 +00:00
7d1ea60d03 Update src/app/page.tsx 2026-01-24 19:53:26 +00:00
b6c40378e5 Update src/app/globals.css 2026-01-24 19:53:25 +00:00
3bde02be21 Update src/app/blog/page.tsx 2026-01-24 19:53:24 +00:00
3 changed files with 32 additions and 43 deletions

View File

@@ -79,7 +79,8 @@ export default function BlogPage() {
const url = `${apiUrl}/posts/${projectId}?status=published`; const url = `${apiUrl}/posts/${projectId}?status=published`;
const response = await fetch(url, { const response = await fetch(url, {
method: "GET", headers: { method: "GET", headers: {
"Content-Type": "application/json"}, "Content-Type": "application/json"
},
}); });
if (response.ok) { if (response.ok) {

View File

@@ -4,21 +4,21 @@
/* Base units */ /* Base units */
/* --vw is set by ThemeProvider */ /* --vw is set by ThemeProvider */
/* --background: #010912;; /* --background: #ffffff;;
--card: #152840;; --card: #f9f9f9;;
--foreground: #e6f0ff;; --foreground: #000612e6;;
--primary-cta: #cee7ff;; --primary-cta: #15479c;;
--secondary-cta: #0e1a29;; --secondary-cta: #f9f9f9;;
--accent: #3f5c79;; --accent: #e2e2e2;;
--background-accent: #004a93;; */ --background-accent: #c4c4c4;; */
--background: #010912;; --background: #ffffff;;
--card: #152840;; --card: #f9f9f9;;
--foreground: #e6f0ff;; --foreground: #000612e6;;
--primary-cta: #cee7ff;; --primary-cta: #15479c;;
--secondary-cta: #0e1a29;; --secondary-cta: #f9f9f9;;
--accent: #3f5c79;; --accent: #e2e2e2;;
--background-accent: #004a93;; --background-accent: #c4c4c4;;
/* text sizing - set by ThemeProvider */ /* text sizing - set by ThemeProvider */
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);

View File

@@ -1,8 +1,8 @@
"use client" "use client";
import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered';
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard'; import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen'; import FeatureCardEight from '@/components/sections/feature/FeatureCardEight';
import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout'; import InlineImageSplitTextAbout from '@/components/sections/about/InlineImageSplitTextAbout';
import ProductCardThree from '@/components/sections/product/ProductCardThree'; import ProductCardThree from '@/components/sections/product/ProductCardThree';
import MetricCardOne from '@/components/sections/metrics/MetricCardOne'; import MetricCardOne from '@/components/sections/metrics/MetricCardOne';
@@ -53,41 +53,29 @@ export default function LandingPage() {
</div> </div>
<div id="specs" data-section="specs"> <div id="specs" data-section="specs">
<FeatureCardTen <FeatureCardEight
title="Unmatched Performance Specifications" title="Our Process"
description="The 911 GT3RS delivers track-dominating performance with precision engineering and pure mechanical control." description="Discover how we bring ideas to life through our proven methodology."
tag="Engineering Excellence" tag="How It Works"
features={[ features={[
{ {
id: "1", title: "4.0L Flat-Six Engine", description: "520 horsepower of pure Porsche performance, naturally aspirated for instant throttle response and visceral connection with the road.", media: {imageSrc: "https://img.b2bpic.net/free-photo/black-mini-coupe-road_114579-5056.jpg"}, id: 1,
items: [ title: "Research & Planning", description: "Understanding user needs, market trends, and project requirements", imageSrc: "https://img.b2bpic.net/free-photo/black-mini-coupe-road_114579-5056.jpg", imageAlt: "Research and planning"
{icon: Zap, text: "520 HP Peak Power"},
{icon: Gauge, text: "0-60 in 3.2 seconds"},
{icon: Gauge, text: "198 mph top speed"}
],
reverse: false
}, },
{ {
id: "2", title: "Aggressive Aerodynamics", description: "Precision-engineered carbon fiber elements and active aerodynamics generate maximum downforce for ultimate track grip and stability.", media: {imageSrc: "https://img.b2bpic.net/free-photo/high-speed-driving-mini-sport-car-forest_114579-4014.jpg"}, id: 2,
items: [ title: "Design & Development", description: "Creating beautiful, functional designs and building robust solutions", imageSrc: "https://img.b2bpic.net/free-photo/high-speed-driving-mini-sport-car-forest_114579-4014.jpg", imageAlt: "Design and development"
{icon: Wind, text: "Adjustable spoiler wing"},
{icon: Layers, text: "Carbon fiber bodywork"},
{icon: Activity, text: "Active aerodynamic management"}
],
reverse: true
}, },
{ {
id: "3", title: "Track-Focused Interior", description: "Lightweight racing-inspired cockpit with sport seats and intuitive driver controls for complete connection with the machine.", media: {imageSrc: "https://img.b2bpic.net/free-photo/mini-coupe-driving-highway-accross-mountains_114579-4015.jpg"}, id: 3,
items: [ title: "Testing & Refinement", description: "Ensuring quality through rigorous testing and continuous improvement", imageSrc: "https://img.b2bpic.net/free-photo/mini-coupe-driving-highway-accross-mountains_114579-4015.jpg", imageAlt: "Testing and refinement"
{icon: Disc3, text: "Racing harness points"}, },
{icon: Gauge, text: "Sport chrono package"}, {
{icon: ZoomIn, text: "Precision telemetry display"} id: 4,
], title: "Launch & Support", description: "Deploying with confidence and providing ongoing support and optimization", imageSrc: "https://img.b2bpic.net/free-photo/mini-coupe-parking-highway-bridge_114579-4016.jpg", imageAlt: "Launch and support"
reverse: false
} }
]} ]}
textboxLayout="default" textboxLayout="default"
animationType="slide-up"
useInvertedBackground="invertDefault" useInvertedBackground="invertDefault"
/> />
</div> </div>