Merge version_1 into main #5

Merged
bender merged 2 commits from version_1 into main 2026-04-12 14:12:08 +00:00
2 changed files with 8 additions and 18 deletions

View File

@@ -7,7 +7,7 @@ import LegalSection from '@/components/legal/LegalSection';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import TestimonialCardTen from '@/components/sections/testimonial/TestimonialCardTen';
export default function LandingPage() {
export default function AboutPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -41,12 +41,8 @@ export default function LandingPage() {
layout="section"
title="Our Mission"
sections={[
{
heading: "Vision", content: { text: "To set the standard for high-performance design." },
},
{
heading: "Values", content: { items: ["Integrity", "Performance", "Innovation", "Transparency"] },
},
{ heading: "Vision", content: { type: "paragraph", text: "To set the standard for high-performance design." } },
{ heading: "Values", content: { type: "list", items: ["Integrity", "Performance", "Innovation", "Transparency"] } },
]}
/>
</div>
@@ -58,10 +54,8 @@ export default function LandingPage() {
title="Meet the Team"
description="Our experts are passionate about digital excellence."
testimonials={[
{
id: "staff1", title: "Design Lead", quote: "I focus on aesthetic precision.", name: "Eva G.", role: "Creative Lead", imageSrc: "http://img.b2bpic.net/free-photo/successful-senior-businesswoman-eyeglasses_1262-5856.jpg"},
{
id: "staff2", title: "Tech Architect", quote: "Code performance is the top priority.", name: "Mark D.", role: "Tech Lead", imageSrc: "http://img.b2bpic.net/free-photo/closeup-confident-asian-man-with-arms-crossed_1262-884.jpg"},
{ id: "staff1", title: "Design Lead", quote: "I focus on aesthetic precision.", name: "Eva G.", role: "Creative Lead", imageSrc: "http://img.b2bpic.net/free-photo/successful-senior-businesswoman-eyeglasses_1262-5856.jpg" },
{ id: "staff2", title: "Tech Architect", quote: "Code performance is the top priority.", name: "Mark D.", role: "Tech Lead", imageSrc: "http://img.b2bpic.net/free-photo/closeup-confident-asian-man-with-arms-crossed_1262-884.jpg" },
]}
/>
</div>

View File

@@ -8,7 +8,7 @@ import LegalSection from '@/components/legal/LegalSection';
import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay';
import { MessageSquare, Video, CheckCircle, Mail } from 'lucide-react';
export default function LandingPage() {
export default function ContactPage() {
return (
<ThemeProvider
defaultButtonVariant="hover-bubble"
@@ -42,12 +42,8 @@ export default function LandingPage() {
layout="section"
title="Contact Details"
sections={[
{
heading: "Office", content: { text: "123 Neon Ave, Future City." },
},
{
heading: "Support", content: { text: "24/7 client portal access." },
},
{ heading: "Office", content: { type: "paragraph", text: "123 Neon Ave, Future City." } },
{ heading: "Support", content: { type: "paragraph", text: "24/7 client portal access." } },
]}
/>
</div>