From 90499e2b77b40ba940d968ed4ebdf97ef32f102b Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Wed, 22 Oct 2025 14:31:07 +0200 Subject: [PATCH] refactor: replace About component with new AboutNew implementation --- src/app/(main)/page.tsx | 4 ++-- src/components/AboutNew.tsx | 37 +++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 2 deletions(-) create mode 100644 src/components/AboutNew.tsx diff --git a/src/app/(main)/page.tsx b/src/app/(main)/page.tsx index db00e55..bf2e1de 100644 --- a/src/app/(main)/page.tsx +++ b/src/app/(main)/page.tsx @@ -6,7 +6,7 @@ import { PrimaryFeatures } from '@/components/PrimaryFeatures' import { UseCases } from '@/components/UseCases' import { SecondaryFeatures } from '@/components/SecondaryFeatures' import { Benefits } from '@/components/Benefits' -import { About } from '@/components/About' +import { AboutNew } from '@/components/AboutNew' import { Features } from '@/components/Features' export default function Home() { @@ -16,7 +16,7 @@ export default function Home() { - + diff --git a/src/components/AboutNew.tsx b/src/components/AboutNew.tsx new file mode 100644 index 0000000..9e59a20 --- /dev/null +++ b/src/components/AboutNew.tsx @@ -0,0 +1,37 @@ +import { AppStoreLink } from '@/components/AppStoreLink' +import { P, SectionHeader } from '@/components/Texts' +import { WindowsLink } from '@/components/WindowsLink' +import { AndroidLink } from './AndroidLink' +import { LinuxLink } from '@/components/LinuxLink' +import { CircleBackground } from '@/components/CircleBackground' +import { Container } from '@/components/Container' + +export function AboutNew() { + return ( +
+
+ +
+ +
+ + Discover Mycelium + +

+ Mycelium is an unbreakable network, always finding the shortest path and + providing 100% secure, peer-to-peer communication. But this is just + the beginning. +

+

+ Our mission is to create a sustainable digital ecosystem where + communication is seamless, data is secure, and scalability knows no + bounds. +

+
+
+
+ ) +}