Content edit: [Block: hero-logo|Hero Logo|/blocks/hero/heroLogo.
This commit is contained in:
115
src/app/page.tsx
115
src/app/page.tsx
@@ -10,7 +10,10 @@ import TestimonialCardTwo from '@/components/sections/testimonial/TestimonialCar
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||
import { AlertTriangle, Lock, Brain, Clock, Shield, FileText } from 'lucide-react';
|
||||
import { AlertTriangle, Lock, Brain, Clock, Shield, FileText, MessageCircle } from "lucide-react";
|
||||
import FaqDouble from "@/components/sections/faq/FaqDouble";
|
||||
import HeroBillboard from "@/components/sections/hero/HeroBillboard";
|
||||
import HeroBillboardRotatedCarousel from "@/components/sections/hero/HeroBillboardRotatedCarousel";
|
||||
|
||||
export default function LandingPage() {
|
||||
return (
|
||||
@@ -43,17 +46,38 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroSplit
|
||||
title="drochilnya en español"
|
||||
description="ZALUPA"
|
||||
tag="My Project"
|
||||
imagePosition="right"
|
||||
imageSrc="https://img.b2bpic.net/free-vector/futuristic-hexagonal-net-background_52683-8627.jpg?id=4432766"
|
||||
imageAlt="Brain representing human autonomy and freedom"
|
||||
<HeroBillboardRotatedCarousel
|
||||
title="Discover Our Collection"
|
||||
description="Explore a diverse range of high-quality items, all at your fingertips. Shop now and experience the best!"
|
||||
carouselItems={[
|
||||
{
|
||||
"id": "1"
|
||||
},
|
||||
{
|
||||
"id": "2"
|
||||
},
|
||||
{
|
||||
"id": "3"
|
||||
},
|
||||
{
|
||||
"id": "4"
|
||||
}
|
||||
]}
|
||||
tag="Hero Logo"
|
||||
tagIcon={MessageCircle}
|
||||
buttons={[
|
||||
{ text: "Explore the Evidence", href: "#problem" },
|
||||
{ text: "Read the FAQ", href: "#faq" }
|
||||
]}
|
||||
{
|
||||
"text": "Get Started",
|
||||
"href": "#"
|
||||
},
|
||||
{
|
||||
"text": "Learn More",
|
||||
"href": "#"
|
||||
}
|
||||
]}
|
||||
autoPlay={true}
|
||||
autoPlayInterval={4000}
|
||||
ariaLabel="Hero section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
@@ -132,36 +156,47 @@ export default function LandingPage() {
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
title="Common Questions"
|
||||
description="Clear answers to common questions about invasive neurolink technology and cognitive liberty."
|
||||
tag="Questions & Answers"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="invertDefault"
|
||||
imageSrc="https://img.b2bpic.net/free-photo/person-working-html-computer_23-2150038843.jpg"
|
||||
imageAlt="Digital privacy and data protection visualization"
|
||||
mediaPosition="right"
|
||||
animationType="smooth"
|
||||
<FaqDouble
|
||||
faqs={[
|
||||
{
|
||||
id: "1", title: "Aren't neural implants just medical devices?", content: "While some implants serve legitimate medical purposes (treating Parkinson's, epilepsy), invasive neurolinks designed for cognitive enhancement or data extraction are fundamentally different. They create direct access to the brain's computational substrate—something no traditional medical device does."
|
||||
},
|
||||
{
|
||||
id: "2", title: "Could neural implants be beneficial for medicine?", content: "Yes, for specific therapeutic applications. However, this project focuses on <strong>invasive enhancement neurolinks</strong>, not medical treatments. We support continued research into non-invasive alternatives and reversible interventions."
|
||||
},
|
||||
{
|
||||
id: "3", title: "What about encryption and security?", content: "Current neural implants lack standardized encryption. Even encrypted systems face unique challenges: the interface operates at microsecond timescales, and any latency could impair function. Additionally, the brain itself may be readable through side-channel attacks independent of encryption."
|
||||
},
|
||||
{
|
||||
id: "4", title: "Could governments ban this technology?", content: "International treaties could establish restrictions, similar to chemical or biological weapons treaties. However, this requires coordinated global action. Without such frameworks, competitive pressure will drive deployment."
|
||||
},
|
||||
{
|
||||
id: "5", title: "What about opting out?", content: "History suggests that transformative technologies eventually become coercive. Employment requirements, military mandates, or social pressure could make 'opting out' economically or socially impossible for many people."
|
||||
},
|
||||
{
|
||||
id: "6", title: "What can individuals do?", content: "Support cognitive liberty advocacy groups, contact elected representatives, engage in public discourse, and demand rigorous long-term safety studies before deployment. Individual informed refusal remains powerful collective action."
|
||||
}
|
||||
]}
|
||||
{
|
||||
"id": "1",
|
||||
"title": "How do I get started?",
|
||||
"content": "Getting started is easy! Simply sign up for a free account, complete the onboarding process, and you'll be ready to go in minutes."
|
||||
},
|
||||
{
|
||||
"id": "2",
|
||||
"title": "What payment methods do you accept?",
|
||||
"content": "We accept all major credit cards (Visa, MasterCard, American Express), PayPal, and bank transfers for annual plans."
|
||||
},
|
||||
{
|
||||
"id": "3",
|
||||
"title": "Can I cancel my subscription anytime?",
|
||||
"content": "Yes, you can cancel your subscription at any time. There are no long-term contracts or cancellation fees."
|
||||
},
|
||||
{
|
||||
"id": "4",
|
||||
"title": "Do you offer a free trial?",
|
||||
"content": "Yes! We offer a 14-day free trial with full access to all features. No credit card required."
|
||||
}
|
||||
]}
|
||||
title="Your Title Here"
|
||||
description="Add your description here."
|
||||
textboxLayout="default"
|
||||
useInvertedBackground="noInvert"
|
||||
tag="Sample tag"
|
||||
tagIcon={MessageCircle}
|
||||
buttons={[
|
||||
{
|
||||
"text": "Get Started",
|
||||
"href": "#"
|
||||
},
|
||||
{
|
||||
"text": "Learn More",
|
||||
"href": "#"
|
||||
}
|
||||
]}
|
||||
animationType="smooth"
|
||||
ariaLabel="FAQ section"
|
||||
/>
|
||||
</div>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user