Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #1.
This commit is contained in:
@@ -1,22 +1,9 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import Navbar from "@/components/Navbar/Navbar";
|
||||
import About from "@/components/About/About";
|
||||
import Team from "@/components/Team/Team";
|
||||
import Metric from "@/components/Metric/Metric";
|
||||
import Footer from "@/components/Footer/Footer";
|
||||
import Link from "next/link";
|
||||
import { Users, Lightbulb, TrendingUp } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
const navLinks = [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -30,92 +17,7 @@ export default function AboutPage() {
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<div id="nav" data-section="nav" className="relative z-50">
|
||||
<Navbar
|
||||
logo={{ type: "text", value: "SolSense" }}
|
||||
links={navLinks}
|
||||
themeToggle={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="about" data-section="about" className="mx-auto px-4 md:px-6">
|
||||
<About
|
||||
tagline="Our Story"
|
||||
title="Pioneering Solana Intelligence"
|
||||
description="SolSense was founded by a team of blockchain enthusiasts and data scientists with a singular vision: to bring clarity and advanced analytics to the Solana ecosystem. We believe in empowering investors with the tools they need to navigate the complexities of decentralized finance."
|
||||
imageSrc="https://via.placeholder.com/1920x1080?text=About+SolSense"
|
||||
imageAlt="Team working on Solana analytics"
|
||||
features={[
|
||||
{
|
||||
title: "Visionary Leadership", description: "Led by experts with deep roots in crypto and data science."},
|
||||
{
|
||||
title: "Community-Driven", description: "Constantly evolving based on user feedback and market needs."},
|
||||
{
|
||||
title: "Innovation at Core", description: "Dedicated to pushing the boundaries of what's possible in DeFi analytics."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="team" data-section="team" className="mx-auto px-4 md:px-6">
|
||||
<Team
|
||||
tagline="Meet the Innovators"
|
||||
title="Our Dedicated Team"
|
||||
description="The minds behind SolSense, committed to building the future of Solana portfolio management."
|
||||
members={[
|
||||
{
|
||||
name: "Dr. Elena Petrova", role: "CEO & Lead Data Scientist", imageSrc: "https://via.placeholder.com/150x150?text=Elena", imageAlt: "Dr. Elena Petrova", socialLinks: [
|
||||
{ platform: "linkedin", href: "#" },
|
||||
{ platform: "twitter", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Marcus Chen", role: "CTO & Blockchain Architect", imageSrc: "https://via.placeholder.com/150x150?text=Marcus", imageAlt: "Marcus Chen", socialLinks: [
|
||||
{ platform: "linkedin", href: "#" },
|
||||
{ platform: "github", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
name: "Sarah Jenkins", role: "Head of Product", imageSrc: "https://via.placeholder.com/150x150?text=Sarah", imageAlt: "Sarah Jenkins", socialLinks: [
|
||||
{ platform: "linkedin", href: "#" },
|
||||
{ platform: "twitter", href: "#" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric" className="mx-auto px-4 md:px-6">
|
||||
<Metric
|
||||
tagline="Our Values"
|
||||
title="Guiding Principles for Success"
|
||||
description="At SolSense, our work is driven by a core set of values that ensure we always put our users first."
|
||||
metrics={[
|
||||
{
|
||||
icon: Users,
|
||||
label: "Transparency", description: "Openness in data, operations, and user communication."},
|
||||
{
|
||||
icon: Lightbulb,
|
||||
label: "Innovation", description: "Continuously exploring new technologies and solutions."},
|
||||
{
|
||||
icon: TrendingUp,
|
||||
label: "Empowerment", description: "Giving users the tools to make informed financial decisions."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer" className="mx-auto px-4 md:px-6">
|
||||
<Footer
|
||||
logo={{ type: "text", value: "SolSense" }}
|
||||
description="Your trusted partner for Solana portfolio intelligence."
|
||||
links={navLinks}
|
||||
socialLinks={[
|
||||
{ platform: "twitter", href: "https://twitter.com/solsenseapp" },
|
||||
{ platform: "discord", href: "https://discord.gg/solsense" },
|
||||
{ platform: "linkedin", href: "https://linkedin.com/company/solsense" },
|
||||
]}
|
||||
copyright="© 2024 SolSense. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,21 +1,9 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import Navbar from "@/components/Navbar/Navbar";
|
||||
import Contact from "@/components/Contact/Contact";
|
||||
import FAQ from "@/components/FAQ/FAQ";
|
||||
import CTA from "@/components/CTA/CTA";
|
||||
import Footer from "@/components/Footer/Footer";
|
||||
import Link from "next/link";
|
||||
|
||||
export default function ContactPage() {
|
||||
const navLinks = [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -29,70 +17,7 @@ export default function ContactPage() {
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<div id="nav" data-section="nav" className="relative z-50">
|
||||
<Navbar
|
||||
logo={{ type: "text", value: "SolSense" }}
|
||||
links={navLinks}
|
||||
themeToggle={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="contact" data-section="contact" className="mx-auto px-4 md:px-6">
|
||||
<Contact
|
||||
tagline="Get In Touch"
|
||||
title="Contact Our Team"
|
||||
description="Have questions or need support? Our team is here to help. Reach out to us through the form below or via our direct channels."
|
||||
form={{ action: "/api/contact", method: "POST" }}
|
||||
email="support@solsense.com"
|
||||
phone="+1 (555) 123-4567"
|
||||
address="123 Solana Way, Crypto City, CA 90210"
|
||||
socialLinks={[
|
||||
{ platform: "twitter", href: "https://twitter.com/solsenseapp" },
|
||||
{ platform: "discord", href: "https://discord.gg/solsense" },
|
||||
{ platform: "linkedin", href: "https://linkedin.com/company/solsense" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq-general" data-section="faq-general" className="mx-auto px-4 md:px-6">
|
||||
<FAQ
|
||||
tagline="Need Answers?"
|
||||
title="General Support Questions"
|
||||
faqs={[
|
||||
{
|
||||
question: "Where can I find tutorials for SolSense?", answer: "Visit our documentation portal for in-depth guides and video tutorials on all SolSense features."},
|
||||
{
|
||||
question: "How do I report a bug or suggest a feature?", answer: "Please use the feedback form within your dashboard or join our Discord community to share your ideas."},
|
||||
{
|
||||
question: "Is my personal data protected?", answer: "Yes, we adhere to strict data privacy policies. Refer to our Privacy Policy for more details."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="cta-contact" data-section="cta-contact" className="mx-auto px-4 md:px-6">
|
||||
<CTA
|
||||
title="Join Our Community!"
|
||||
description="Connect with other Solana enthusiasts and get the latest updates. Follow us on social media or join our Discord."
|
||||
primaryButton={{
|
||||
text: "Join Discord", href: "https://discord.gg/solsense", variant: "double-inset"}}
|
||||
secondaryButton={{
|
||||
text: "Follow on Twitter", href: "https://twitter.com/solsenseapp", variant: "radial-glow"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer" className="mx-auto px-4 md:px-6">
|
||||
<Footer
|
||||
logo={{ type: "text", value: "SolSense" }}
|
||||
description="Your trusted partner for Solana portfolio intelligence."
|
||||
links={navLinks}
|
||||
socialLinks={[
|
||||
{ platform: "twitter", href: "https://twitter.com/solsenseapp" },
|
||||
{ platform: "discord", href: "https://discord.gg/solsense" },
|
||||
{ platform: "linkedin", href: "https://linkedin.com/company/solsense" },
|
||||
]}
|
||||
copyright="© 2024 SolSense. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
|
||||
153
src/app/page.tsx
153
src/app/page.tsx
@@ -1,26 +1,9 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import Navbar from "@/components/Navbar/Navbar";
|
||||
import Hero from "@/components/Hero/Hero";
|
||||
import Feature from "@/components/Feature/Feature";
|
||||
import Metric from "@/components/Metric/Metric";
|
||||
import Testimonial from "@/components/Testimonial/Testimonial";
|
||||
import SocialProof from "@/components/SocialProof/SocialProof";
|
||||
import CTA from "@/components/CTA/CTA";
|
||||
import FAQ from "@/components/FAQ/FAQ";
|
||||
import Footer from "@/components/Footer/Footer";
|
||||
import Link from "next/link";
|
||||
import { Rocket, Shield, Activity, Bell } from "lucide-react";
|
||||
|
||||
export default function HomePage() {
|
||||
const navLinks = [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -34,141 +17,7 @@ export default function HomePage() {
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<div id="nav" data-section="nav" className="relative z-50">
|
||||
<Navbar
|
||||
logo={{ type: "text", value: "SolSense" }}
|
||||
links={navLinks}
|
||||
themeToggle={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero" className="mx-auto px-4 md:px-6">
|
||||
<Hero
|
||||
tagline="Real-time Intelligence"
|
||||
title="Unlock Solana's Full Potential"
|
||||
description="Dive deep into your Solana portfolio with SolSense. Advanced analytics, smart alerts, and a futuristic interface tailored for serious investors."
|
||||
primaryButton={{
|
||||
text: "Start Free Trial", href: "/services", variant: "double-inset"}}
|
||||
secondaryButton={{
|
||||
text: "Learn More", href: "/about", variant: "radial-glow"}}
|
||||
imageSrc="https://via.placeholder.com/1920x1080?text=SolSense+Hero+Dashboard"
|
||||
imageAlt="SolSense dashboard displaying Solana portfolio analytics"
|
||||
animation="fadeInUp"
|
||||
featureList={[
|
||||
{ text: "Real-time Data Streams" },
|
||||
{ text: "Advanced Charting Tools" },
|
||||
{ text: "Secure & Private" },
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="feature" data-section="feature" className="mx-auto px-4 md:px-6">
|
||||
<Feature
|
||||
tagline="Key Features"
|
||||
title="Empower Your Decisions"
|
||||
description="SolSense provides a suite of powerful tools designed to give you an edge in the volatile crypto market."
|
||||
features={[
|
||||
{
|
||||
icon: Rocket,
|
||||
title: "Real-time Analytics", description: "Monitor your Solana assets with live data, comprehensive charts, and predictive insights."},
|
||||
{
|
||||
icon: Bell,
|
||||
title: "Customizable Alerts", description: "Set up personalized notifications for price movements, whale transactions, and portfolio changes."},
|
||||
{
|
||||
icon: Shield,
|
||||
title: "Secure DeFi Integration", description: "Safely connect your wallets and track your DeFi positions across the Solana ecosystem."},
|
||||
{
|
||||
icon: Activity,
|
||||
title: "Portfolio Optimization", description: "Utilize AI-driven suggestions to rebalance your portfolio and maximize returns."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="metric" data-section="metric" className="mx-auto px-4 md:px-6">
|
||||
<Metric
|
||||
tagline="Our Impact"
|
||||
title="Data-Driven Growth"
|
||||
description="See how SolSense is making a difference for Solana investors worldwide."
|
||||
metrics={[
|
||||
{
|
||||
value: "250K+", label: "Active Users", description: "Investors trust SolSense daily for their Solana insights."},
|
||||
{
|
||||
value: "$5B+", label: "Assets Under Analysis", description: "Total value of Solana assets monitored on our platform."},
|
||||
{
|
||||
value: "99.9%", label: "Uptime Guarantee", description: "Reliable access to your data, whenever you need it."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="testimonial" data-section="testimonial" className="mx-auto px-4 md:px-6">
|
||||
<Testimonial
|
||||
tagline="What Our Users Say"
|
||||
title="Trusted by Solana Enthusiasts"
|
||||
testimonials={[
|
||||
{
|
||||
quote: "SolSense completely changed how I manage my Solana portfolio. The real-time data is indispensable!", name: "Alex K.", title: "DeFi Investor", imageSrc: "https://via.placeholder.com/100x100?text=User1", imageAlt: "Profile picture of Alex K."},
|
||||
{
|
||||
quote: "The interface is slick, and the insights are genuinely helpful. Best Solana tool out there.", name: "Samantha L.", title: "Crypto Trader", imageSrc: "https://via.placeholder.com/100x100?text=User2", imageAlt: "Profile picture of Samantha L."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="socialproof" data-section="socialproof" className="mx-auto px-4 md:px-6">
|
||||
<SocialProof
|
||||
tagline="Featured On"
|
||||
title="Recognized by Industry Leaders"
|
||||
logos={[
|
||||
{
|
||||
src: "https://via.placeholder.com/150x50?text=Blockchain+Daily", alt: "Blockchain Daily logo"},
|
||||
{
|
||||
src: "https://via.placeholder.com/150x50?text=Crypto+Times", alt: "Crypto Times logo"},
|
||||
{
|
||||
src: "https://via.placeholder.com/150x50?text=Web3+Insights", alt: "Web3 Insights logo"},
|
||||
{
|
||||
src: "https://via.placeholder.com/150x50?text=Solana+News", alt: "Solana News logo"},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="cta" data-section="cta" className="mx-auto px-4 md:px-6">
|
||||
<CTA
|
||||
title="Ready to Elevate Your Solana Strategy?"
|
||||
description="Join thousands of investors who are making smarter decisions with SolSense. Get started today!"
|
||||
primaryButton={{
|
||||
text: "Get Started Free", href: "/services", variant: "double-inset"}}
|
||||
secondaryButton={{
|
||||
text: "Explore Features", href: "/about", variant: "radial-glow"}}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq" data-section="faq" className="mx-auto px-4 md:px-6">
|
||||
<FAQ
|
||||
tagline="Your Questions, Answered"
|
||||
title="Frequently Asked Questions"
|
||||
faqs={[
|
||||
{
|
||||
question: "What is SolSense?", answer: "SolSense is a comprehensive Solana portfolio intelligence platform providing real-time analytics, alerts, and management tools for crypto investors."},
|
||||
{
|
||||
question: "How does SolSense ensure data security?", answer: "We employ industry-leading encryption and security protocols. Your wallet connection is read-only, ensuring your assets remain safe."},
|
||||
{
|
||||
question: "Is there a free trial available?", answer: "Yes, we offer a free tier with essential features. You can upgrade to a paid plan for advanced tools at any time."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer" className="mx-auto px-4 md:px-6">
|
||||
<Footer
|
||||
logo={{ type: "text", value: "SolSense" }}
|
||||
description="Your trusted partner for Solana portfolio intelligence."
|
||||
links={navLinks}
|
||||
socialLinks={[
|
||||
{ platform: "twitter", href: "https://twitter.com/solsenseapp" },
|
||||
{ platform: "discord", href: "https://discord.gg/solsense" },
|
||||
{ platform: "linkedin", href: "https://linkedin.com/company/solsense" },
|
||||
]}
|
||||
copyright="© 2024 SolSense. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
|
||||
@@ -1,22 +1,9 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import Navbar from "@/components/Navbar/Navbar";
|
||||
import Product from "@/components/Product/Product";
|
||||
import Pricing from "@/components/Pricing/Pricing";
|
||||
import FAQ from "@/components/FAQ/FAQ";
|
||||
import Footer from "@/components/Footer/Footer";
|
||||
import Link from "next/link";
|
||||
import { BarChart, Search, ShieldCheck } from "lucide-react";
|
||||
|
||||
export default function ServicesPage() {
|
||||
const navLinks = [
|
||||
{ label: "Home", href: "/" },
|
||||
{ label: "About", href: "/about" },
|
||||
{ label: "Services", href: "/services" },
|
||||
{ label: "Contact", href: "/contact" },
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="elastic-effect"
|
||||
@@ -30,103 +17,7 @@ export default function ServicesPage() {
|
||||
secondaryButtonStyle="radial-glow"
|
||||
headingFontWeight="extrabold"
|
||||
>
|
||||
<div id="nav" data-section="nav" className="relative z-50">
|
||||
<Navbar
|
||||
logo={{ type: "text", value: "SolSense" }}
|
||||
links={navLinks}
|
||||
themeToggle={true}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="product" data-section="product" className="mx-auto px-4 md:px-6">
|
||||
<Product
|
||||
tagline="Our Offerings"
|
||||
title="Comprehensive Solana Intelligence Tools"
|
||||
description="Explore the powerful features and tailored solutions SolSense provides to give you an unparalleled edge in the Solana market."
|
||||
products={[
|
||||
{
|
||||
title: "Core Analytics Suite", description: "Real-time portfolio tracking, historical data, and basic market insights.", imageSrc: "https://via.placeholder.com/800x600?text=Analytics+Suite", imageAlt: "SolSense core analytics dashboard", features: [
|
||||
"Live Price Tracking", "Basic Portfolio Overview", "Historical Data Access"],
|
||||
button: { text: "Learn More", href: "/services", variant: "double-inset" },
|
||||
},
|
||||
{
|
||||
title: "Pro Insights & Strategies", description: "Advanced charting, AI-driven predictions, and customizable alert systems.", imageSrc: "https://via.placeholder.com/800x600?text=Pro+Insights", imageAlt: "SolSense pro insights with advanced charts", features: [
|
||||
"Advanced Charting Tools", "AI-Powered Predictions", "Customizable Smart Alerts"],
|
||||
button: { text: "View Pro Plan", href: "/services", variant: "double-inset" },
|
||||
},
|
||||
{
|
||||
title: "Enterprise Solutions", description: "Dedicated support, API access, and tailored analytics for institutional clients.", imageSrc: "https://via.placeholder.com/800x600?text=Enterprise+Solution", imageAlt: "SolSense enterprise solution interface", features: [
|
||||
"Dedicated Account Manager", "Full API Access", "Custom Report Generation"],
|
||||
button: { text: "Contact Sales", href: "/contact", variant: "double-inset" },
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="pricing" data-section="pricing" className="mx-auto px-4 md:px-6">
|
||||
<Pricing
|
||||
tagline="Flexible Plans"
|
||||
title="Choose Your SolSense Journey"
|
||||
description="No matter your investment size, SolSense has a plan that fits your needs. Start free and upgrade anytime."
|
||||
plans={[
|
||||
{
|
||||
name: "Free", price: "$0", period: "/month", features: [
|
||||
{ text: "Basic Portfolio Tracker", icon: BarChart },
|
||||
{ text: "Limited Real-time Data", icon: Search },
|
||||
{ text: "Community Support", icon: Users },
|
||||
],
|
||||
button: { text: "Get Started", href: "#", variant: "radial-glow" },
|
||||
},
|
||||
{
|
||||
name: "Pro", price: "$49", period: "/month", features: [
|
||||
{ text: "All Free Features", icon: ShieldCheck },
|
||||
{ text: "Advanced Analytics", icon: BarChart },
|
||||
{ text: "Custom Alerts", icon: Bell },
|
||||
{ text: "Priority Support", icon: Users },
|
||||
],
|
||||
button: { text: "Upgrade to Pro", href: "#", variant: "double-inset" },
|
||||
},
|
||||
{
|
||||
name: "Premium", price: "$99", period: "/month", features: [
|
||||
{ text: "All Pro Features", icon: ShieldCheck },
|
||||
{ text: "AI-Powered Predictions", icon: Search },
|
||||
{ text: "Dedicated Account Manager", icon: Users },
|
||||
{ text: "Full API Access", icon: Activity },
|
||||
],
|
||||
button: { text: "Go Premium", href: "#", variant: "double-inset" },
|
||||
},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="faq-services" data-section="faq-services" className="mx-auto px-4 md:px-6">
|
||||
<FAQ
|
||||
tagline="Billing & Services"
|
||||
title="Questions About Our Plans?"
|
||||
faqs={[
|
||||
{
|
||||
question: "Can I change my plan later?", answer: "Yes, you can upgrade or downgrade your plan at any time directly from your account settings."},
|
||||
{
|
||||
question: "What payment methods do you accept?", answer: "We accept all major credit cards and several crypto payment options."},
|
||||
{
|
||||
question: "Do you offer custom enterprise solutions?", answer: "Absolutely! Please contact our sales team to discuss your specific institutional needs."},
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer" className="mx-auto px-4 md:px-6">
|
||||
<Footer
|
||||
logo={{ type: "text", value: "SolSense" }}
|
||||
description="Your trusted partner for Solana portfolio intelligence."
|
||||
links={navLinks}
|
||||
socialLinks={[
|
||||
{ platform: "twitter", href: "https://twitter.com/solsenseapp" },
|
||||
{ platform: "discord", href: "https://discord.gg/solsense" },
|
||||
{ platform: "linkedin", href: "https://linkedin.com/company/solsense" },
|
||||
]}
|
||||
copyright="© 2024 SolSense. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user