diff --git a/.gitignore b/.gitignore
index 3c3629e..ce50eae 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,83 @@
node_modules
+
+# Next.js build outputs and generated files
+.next/
+next-env.d.ts
+
+# Environment variables
+.env*
+
+# Logs
+*.log
+npm-debug.log*
+
+# Runtime data
+pids
+*.pid
+*.seed
+*.pid.lock
+
+# Coverage directory used by tools like istanbul
+coverage/
+
+# nyc test coverage
+.nyc_output
+
+# Dependency directories
+node_modules/
+
+# Optional npm cache directory
+.npm
+
+# Optional REPL history
+.node_repl_history
+
+# Output of 'npm pack'
+*.tgz
+
+# Yarn Integrity file
+.yarn-integrity
+
+# parcel-bundler cache (https://parceljs.org/)
+.cache
+.parcel-cache
+
+# Next.js build output
+.next
+
+# Nuxt.js build / generate output
+.nuxt
+
+# Gatsby files
+.cache/
+public
+
+# Storybook build outputs
+.out
+.storybook-out
+
+# Temporary folders
+tmp/
+temp/
+
+# OS generated files
+.DS_Store
+.DS_Store?
+._*
+.Spotlight-V100
+.Trashes
+ehthumbs.db
+Thumbs.db
+
+# IDE files
+.vscode/
+.idea/
+*.swp
+*.swo
+*~
+
+# Vercel
+.vercel
+
+# Local Netlify folder
+.netlify
diff --git a/README.md b/README.md
index 32268db..eded3e4 100644
--- a/README.md
+++ b/README.md
@@ -1,35 +1,150 @@
-# Pocket
+# Mycelium Network Website
-Pocket is a [Tailwind Plus](https://tailwindcss.com/plus) site template built using [Tailwind CSS](https://tailwindcss.com) and [Next.js](https://nextjs.org).
+- **Repository:** [https://git.ourworld.tf/ourworld_web/www_mycelium_net/](https://git.ourworld.tf/ourworld_web/www_mycelium_net/)
-## Getting started
+- **Main Branch (Production):** [https://network.mycelium.tf/](https://network.mycelium.tf/)
+- **Dev Branch (Staging):** [https://www2.network.mycelium.tf/](https://www2.network.mycelium.tf/)
-To get started with this template, first install the npm dependencies:
-```bash
-npm install
-```
+---
-Next, run the development server:
+## About
-```bash
-npm run dev
-```
+This is the official website for Mycelium Network, built using Next.js and Tailwind CSS.
-Finally, open [http://localhost:3000](http://localhost:3000) in your browser to view the website.
+---
-## Customizing
+## Technologies
-You can start editing this template by modifying the files in the `/src` folder. The site will auto-update as you edit these files.
+- **Framework**: [Next.js](https://nextjs.org/)
+- **Language**: [TypeScript](https://www.typescriptlang.org/)
+- **Styling**: [Tailwind CSS](https://tailwindcss.com/)
-## License
+---
-This site template is a commercial product and is licensed under the [Tailwind Plus license](https://tailwindcss.com/plus/license).
+## Dependencies
-## Learn more
+- **UI**: [@headlessui/react](https://headlessui.com/)
+- **Animation**: [framer-motion](https://www.framer.com/motion/)
+- **Utilities**: [clsx](https://github.com/lukeed/clsx), [use-debounce](https://github.com/xnimorz/use-debounce)
-To learn more about the technologies used in this site template, see the following resources:
+---
-- [Tailwind CSS](https://tailwindcss.com/docs) - the official Tailwind CSS documentation
-- [Next.js](https://nextjs.org/docs) - the official Next.js documentation
-- [Headless UI](https://headlessui.dev) - the official Headless UI documentation
+## File Structure
+
+- **Pages**: To edit the content of a specific page, navigate to `src/app/(main)/`.
+- **Components**: Reusable components are located in `src/components/`.
+- **Images**: Add or modify images in the `public/images/` directory.
+- **CSS**: Global styles can be found in `src/styles/tailwind.css`. Most styling is done using Tailwind CSS utility classes directly in the `.tsx` files.
+
+---
+
+## Branding
+
+- **Font**: The primary font used is [Inter](https://fonts.google.com/specimen/Inter).
+- **Logos**: Project logos are stored in `public/images/`.
+
+---
+
+## Get Started
+
+Follow these steps to get the project running locally:
+
+1. **Install Dependencies**:
+
+ ```bash
+ npm install
+ ```
+
+2. **Build the Project**:
+
+ ```bash
+ npm run build
+ ```
+
+3. **Start the Development Server**:
+
+ ```bash
+ npm run start
+ ```
+
+---
+
+## Contributing
+
+- **Never update the `main` branch directly.** All changes must be reviewed and merged by the team through a pull request.
+- **Always work on the `development` branch.** Create a feature branch from `development` and submit your pull request to `development`.
+- **Request a review.** After submitting your pull request, ask the team to review and accept it into the `main` branch.
+
+---
+
+## Report an Error
+
+To report an issue, please use the following link and provide the requested information:
+
+- **Issue Tracker**: [git.ourworld.tf/ourworld_web/HOME/issues/new](https://git.ourworld.tf/ourworld_web/HOME/issues/new) and tag **OW Website & Wiki Project 2025**
+
+- See the current web rpoject on [OW Website & Wiki Project 2025](https://git.ourworld.tf/ourworld_web/-/projects/153)
+
+When reporting an issue, please include:
+
+- **URL**: The page where the error occurred.
+- **Repo**: The repository you are working with.
+- **Branch**: The specific branch you are on.
+- **Problem**: A detailed description of the problem.
+
+---
+
+## Questions
+
+If you have any questions, you can reach out to [sashaastiadi](https://git.ourworld.tf/sashaastiadi).
+
+---
+
+## Development Guide
+
+This project follows a modular, component-based architecture. Pages are assembled by combining reusable components into a single layout.
+
+### Homepage Structure
+
+The homepage (`src/app/(main)/page.tsx`) is composed of the following components:
+
+- `Hero`
+- `About`
+- `Features`
+- `PrimaryFeatures`
+- `SecondaryFeatures`
+- `CallToAction`
+- `Faqs`
+
+To edit a specific section of the homepage, navigate to `src/components/` and modify the corresponding component file.
+
+### Base Layout
+
+The main layout for the application is defined in `src/components/Layout.tsx`. This file includes the `Header` and `Footer` and wraps the primary content of each page.
+
+### Creating a New Page
+
+To create a new page, follow these steps:
+
+1. **Create a Folder**: Inside the `src/app/(main)/` directory, create a new folder with the desired URL slug for your page (e.g., `new-page`).
+
+2. **Create the Page File**: Inside the new folder, create a `page.tsx` file.
+
+3. **Add Page Content**: Compose your page by importing and using the reusable components from `src/components/`. For example:
+
+ ```tsx
+ import { Hero } from '@/components/Hero'
+ import { Faqs } from '@/components/Faqs'
+
+ export default function NewPage() {
+ return (
+ <>
+
+
+ >
+ )
+ }
+ ```
+
+The new page will be accessible at `http://localhost:3000/new-page`.
diff --git a/connector.png b/connector.png
new file mode 100644
index 0000000..1311e26
Binary files /dev/null and b/connector.png differ
diff --git a/hooks/useScrollDirection.ts b/hooks/useScrollDirection.ts
new file mode 100644
index 0000000..c360c5f
--- /dev/null
+++ b/hooks/useScrollDirection.ts
@@ -0,0 +1,46 @@
+'use client';
+
+import { useState, useEffect } from 'react';
+
+export type ScrollDirection = 'up' | 'down';
+
+/**
+ * A hook to detect the scroll direction.
+ * It uses requestAnimationFrame for performance, comparing the current scroll position
+ * with the previous one to determine if the user is scrolling up or down.
+ *
+ * @returns {ScrollDirection | null} The current scroll direction ('up' or 'down'), or null on the initial render.
+ */
+export function useScrollDirection(): ScrollDirection | null {
+ const [scrollDirection, setScrollDirection] = useState(null);
+
+ useEffect(() => {
+ let lastScrollY = window.pageYOffset;
+ let ticking = false;
+
+ const updateScrollDirection = () => {
+ const scrollY = window.pageYOffset;
+
+ if (Math.abs(scrollY - lastScrollY) < 10) {
+ ticking = false;
+ return;
+ }
+ setScrollDirection(scrollY > lastScrollY ? 'down' : 'up');
+ lastScrollY = scrollY > 0 ? scrollY : 0;
+ ticking = false;
+ };
+
+ const onScroll = () => {
+ if (!ticking) {
+ window.requestAnimationFrame(updateScrollDirection);
+ ticking = true;
+ }
+ };
+
+ window.addEventListener('scroll', onScroll);
+
+ return () => window.removeEventListener('scroll', onScroll);
+ }, []);
+
+ return scrollDirection;
+}
\ No newline at end of file
diff --git a/next.config.js b/next.config.js
index 767719f..1c89844 100644
--- a/next.config.js
+++ b/next.config.js
@@ -1,4 +1,9 @@
/** @type {import('next').NextConfig} */
-const nextConfig = {}
+const nextConfig = {
+ output: 'export',
+ images: {
+ unoptimized: true,
+ },
+}
module.exports = nextConfig
diff --git a/peers.png b/peers.png
new file mode 100644
index 0000000..0066b57
Binary files /dev/null and b/peers.png differ
diff --git a/setting.png b/setting.png
new file mode 100644
index 0000000..be0b470
Binary files /dev/null and b/setting.png differ
diff --git a/src/app/(auth)/login/page.tsx b/src/app/(auth)/login/page.tsx
deleted file mode 100644
index 013dbbd..0000000
--- a/src/app/(auth)/login/page.tsx
+++ /dev/null
@@ -1,49 +0,0 @@
-import { type Metadata } from 'next'
-import Link from 'next/link'
-
-import { AuthLayout } from '@/components/AuthLayout'
-import { Button } from '@/components/Button'
-import { TextField } from '@/components/Fields'
-
-export const metadata: Metadata = {
- title: 'Sign In',
-}
-
-export default function Login() {
- return (
-
- Don’t have an account?{' '}
-
- Sign up
- {' '}
- for a free trial.
- >
- }
- >
-
-
- )
-}
diff --git a/src/app/(auth)/register/page.tsx b/src/app/(auth)/register/page.tsx
deleted file mode 100644
index 1434f9b..0000000
--- a/src/app/(auth)/register/page.tsx
+++ /dev/null
@@ -1,75 +0,0 @@
-import { type Metadata } from 'next'
-import Link from 'next/link'
-
-import { AuthLayout } from '@/components/AuthLayout'
-import { Button } from '@/components/Button'
-import { SelectField, TextField } from '@/components/Fields'
-
-export const metadata: Metadata = {
- title: 'Sign Up',
-}
-
-export default function Register() {
- return (
-
- Already registered?{' '}
-
- Sign in
- {' '}
- to your account.
- >
- }
- >
-
-
- )
-}
diff --git a/src/app/(main)/download/page.tsx b/src/app/(main)/download/page.tsx
new file mode 100644
index 0000000..ce61006
--- /dev/null
+++ b/src/app/(main)/download/page.tsx
@@ -0,0 +1,20 @@
+import { AnimatedSection } from '@/components/AnimatedSection'
+import DownloadHero from '@/components/DownloadHero'
+import { DevHub } from '@/components/DevHub'
+import { Faqs } from '@/components/Faqs'
+
+export default function Download() {
+ return (
+ <>
+
+
+
+
+
+
+
+
+
+ >
+ )
+}
diff --git a/src/app/(main)/page.tsx b/src/app/(main)/page.tsx
index b842a88..db00e55 100644
--- a/src/app/(main)/page.tsx
+++ b/src/app/(main)/page.tsx
@@ -1,21 +1,38 @@
+import { AnimatedSection } from '@/components/AnimatedSection'
import { CallToAction } from '@/components/CallToAction'
import { Faqs } from '@/components/Faqs'
import { Hero } from '@/components/Hero'
-import { Pricing } from '@/components/Pricing'
import { PrimaryFeatures } from '@/components/PrimaryFeatures'
-import { Reviews } from '@/components/Reviews'
+import { UseCases } from '@/components/UseCases'
import { SecondaryFeatures } from '@/components/SecondaryFeatures'
+import { Benefits } from '@/components/Benefits'
+import { About } from '@/components/About'
+import { Features } from '@/components/Features'
export default function Home() {
return (
<>
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
>
)
}
diff --git a/src/app/favicon.ico b/src/app/favicon.ico
index 88b1f7a..2c1a304 100644
Binary files a/src/app/favicon.ico and b/src/app/favicon.ico differ
diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index 8aaba25..b06e386 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -12,11 +12,11 @@ const inter = Inter({
export const metadata: Metadata = {
title: {
- template: '%s - Pocket',
- default: 'Pocket - Invest at the perfect time.',
+ template: '%s - Mycelium',
+ default: 'Mycelium - Unleash the Power of Decentralized Networks',
},
description:
- 'By leveraging insights from our network of industry insiders, you’ll know exactly when to buy to maximize profit, and exactly when to sell to avoid painful losses.',
+ 'Discover Mycelium, an end-to-end encrypted IPv6 overlay network. The future of secure, efficient, and scalable networking.',
}
export default function RootLayout({
diff --git a/src/app/not-found.tsx b/src/app/not-found.tsx
index 21704c6..357608e 100644
--- a/src/app/not-found.tsx
+++ b/src/app/not-found.tsx
@@ -9,7 +9,7 @@ export default function NotFound() {
404
-
+
Page not found
diff --git a/src/components/About.tsx b/src/components/About.tsx
new file mode 100644
index 0000000..5f19f40
--- /dev/null
+++ b/src/components/About.tsx
@@ -0,0 +1,41 @@
+import { AppStoreLink } from '@/components/AppStoreLink'
+import { Button } from '@/components/Button'
+import { CircleBackground } from '@/components/CircleBackground'
+import { Container } from '@/components/Container'
+
+export function About() {
+ return (
+
+
+
+
+
+
+
Our Mission
+
+ 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.
+
+
+
+
+
+
+
+ )
+}
diff --git a/src/components/AndroidLink.tsx b/src/components/AndroidLink.tsx
new file mode 100644
index 0000000..eb1a12f
--- /dev/null
+++ b/src/components/AndroidLink.tsx
@@ -0,0 +1,71 @@
+import Link from 'next/link'
+import clsx from 'clsx'
+
+export function AndroidLink({
+ color = 'black',
+}: {
+ color?: 'black' | 'white'
+}) {
+ return (
+
+ {/* Android SVG (converted for JSX) */}
+
+
+ {/* Text */}
+
+ Just as nature's mycelium network serves as a critical component in the ecosystems of forests, connecting trees and plants underground, the Mycelium technology offers reliable connectivity in an efficient and resilient way.
+
- It takes 30 seconds to sign up. Download the app and create an
- account today and we’ll send you a tip guaranteed to double your
- first investment.
+
+ Download the Mycelium app and step into the future of secure, peer-to-peer networking; fast, private, and decentralized.
+ );
+}
diff --git a/src/components/DevHub.tsx b/src/components/DevHub.tsx
new file mode 100644
index 0000000..72eacfd
--- /dev/null
+++ b/src/components/DevHub.tsx
@@ -0,0 +1,46 @@
+import { CheckIcon } from '@heroicons/react/20/solid'
+
+const features = [
+ {
+ name: 'Documentation',
+ description: 'Documentation for Mycelium.',
+ },
+ { name: 'Support', description: 'Talk to an expert.' },
+ {
+ name: 'Forum',
+ description: 'Forum for all your questions.',
+ },
+ { name: 'Community', description: 'Join our Developers community on telegram.' },
+
+]
+
+export function DevHub() {
+ return (
+
+
+
+
+
Get Started
+
+ Developer Hub
+
+
+ Our Developer Hub is a resource center for developers looking to build on top of Mycelium. Join our Developers community on telegram to get started.
+
+
+
+ {features.map((feature) => (
+
+
+
+ {feature.name}
+
+
{feature.description}
+
+ ))}
+
+
+
+
+ )
+}
diff --git a/src/components/DownloadHero.tsx b/src/components/DownloadHero.tsx
new file mode 100644
index 0000000..197d44a
--- /dev/null
+++ b/src/components/DownloadHero.tsx
@@ -0,0 +1,77 @@
+import Image from 'next/image';
+import appleIcon from '@/images/apple.svg';
+import windowsIcon from '@/images/windows.svg';
+import androidIcon from '@/images/android.svg';
+import linuxIcon from '@/images/linux.svg';
+
+const features = [
+ {
+ name: 'Download for iOS & MacOS',
+ description: 'Download Mycelium App from the Apple Store.',
+ href: 'https://apps.apple.com/us/app/mycelium-network/id6504277565',
+ icon: appleIcon,
+ },
+ {
+ name: 'Download for Windows',
+ description: 'Download the Mycelium App for Windows directly from its Github repository.',
+ href: 'https://github.com/threefoldtech/myceliumflut/releases',
+ icon: windowsIcon,
+ },
+ {
+ name: 'Download for Android',
+ description: 'Download Mycelium from the Google Play Store.',
+ href: 'https://play.google.com/store/apps/details?id=tech.threefold.mycelium&pli=1',
+ icon: androidIcon,
+ },
+ {
+ name: 'Download for Linux',
+ description: 'Download the Mycelium binary for Linux directly from its Github repository.',
+ href: 'https://github.com/threefoldtech/mycelium/releases/tag/v0.6.1',
+ icon: linuxIcon,
+ },
+];
+
+export default function DownloadHero() {
+ return (
+
+
+
+
+ Download Mycelium
+
+
+ Get Mycelium for Android, Windows, macOS, and iOS to securely connect, store, and interact with the decentralized network—seamlessly and efficiently. Not sure how it works?{' '}
+
+ Read the manual.
+
+
+ );
+}
diff --git a/src/components/DownloadLink.tsx b/src/components/DownloadLink.tsx
new file mode 100644
index 0000000..ebaa618
--- /dev/null
+++ b/src/components/DownloadLink.tsx
@@ -0,0 +1,17 @@
+import Link from 'next/link'
+import { ArrowDownTrayIcon } from '@heroicons/react/24/solid'
+
+export function DownloadLink() {
+ return (
+
+
+ Get Mycelium
+
+ )
+}
diff --git a/src/components/Faqs.tsx b/src/components/Faqs.tsx
index d76acee..5147309 100644
--- a/src/components/Faqs.tsx
+++ b/src/components/Faqs.tsx
@@ -3,53 +3,48 @@ import { Container } from '@/components/Container'
const faqs = [
[
{
- question: 'How do I know the tips are good?',
+ question: 'What is Mycelium?',
answer:
- 'Our whole business depends on our tips being good, so it’s in our best interest that they are. The results of our customers speak for themselves, just trust us.',
+ 'Mycelium is an end-to-end encrypted IPv6 overlay network written in Rust. Each node joining the network receives an IP in the 400::/7 range, facilitating secure and private communications.',
},
{
- question: 'Isn’t this insider trading?',
+ question: 'Is mycelium ready to scale to the world?',
answer:
- 'Yes exactly. But at scale! Historically you could only make insider trades with knowledge from your direct network. Pocket brings you insider trading tips from people you don’t even know.',
+ 'No, Mycelium is not yet fully scalable to a global level. Currently, each network can support around 100,000 users, but multiple networks can be deployed to expand capacity. We anticipate resolving these scalability challenges by 2025.',
},
{
- question: 'But isn’t insider trading illegal?',
+ question: 'How do I install Mycelium?',
answer:
- 'Here’s the thing: you’re the one doing the insider trading, not us. We’re just giving you the tips and some tools to make trades. We’re not doing anything wrong here.',
+ 'The Mycelium app supports iOS, macOS, Android and Windows. For Linux, a binary is available. Installation guides are available for both local machines and virtual machines running on the TFGrid. Note that Windows users need to have wintun.dll in the same directory as the Mycelium executable.',
},
],
[
{
- question: 'Do the people giving you tips realize what they are doing?',
+ question: 'How can I find and use my Mycelium address?',
answer:
- 'Again I would argue this isn’t really our responsibility. People make their own choices. If they don’t research the consequences that’s on them, not on us.',
+ 'Upon using the Mycelium app, you\'re assigned a unique Mycelium address. To copy this address, click the button located to the right of the displayed address in the app interface.',
},
{
- question: 'Where is Pocket based?',
+ question: 'Can I deploy workloads on the TFGrid using Mycelium?',
answer:
- 'Let’s just say it’s not somewhere where the SEC is going to find us.',
+ 'Yes, after installing Mycelium, you can deploy workloads on the TFGrid and connect to them using the Mycelium network. Detailed deployment guides are available in the documentation.',
},
{
- question: 'Is there any age limit to trading on Pocket?',
+ question: 'Is there an API available for Mycelium?',
answer:
- 'For our free plan, the age limit is based on the minimum age to trade in your country of residence. Our VIP plan uses advanced transaction anonymization though, so you can use that plan even if you’re 9 years old. Or a dog.',
+ 'Yes, Mycelium offers an API for administrative operations, peer management, and message subsystem operations. Comprehensive API documentation can be found in the official Mycelium GitHub repository.',
},
],
[
{
- question: 'How did you get this on the App Store?',
+ question: 'What should I do if I encounter issues during installation or usage?',
answer:
- 'Honestly we were surprised too, but eventually we found out that the app reviewer found the app so compelling they approved it just so they could use it themselves.',
+ 'If you face any challenges, refer to the troubleshooting section in the Mycelium documentation. Additionally, ensure that all prerequisites are met, such as having wintun.dll in the correct directory for Windows installations.',
},
{
- question: 'How do I explain the money I withdraw from Pocket to the IRS?',
+ question: 'How does Mycelium handle routing within its network?',
answer:
- 'This feels like one-hundred percent a you problem. Pocket is not responsible in any way for your tax returns.',
- },
- {
- question: 'How do I become an insider?',
- answer:
- 'Contact us with some details about your industry and the type of access you have to apply for an insider account. Once approved, we’ll send you a guide on collecting insider information without being detected at work.',
+ 'Mycelium incorporates core principles of the Babel routing protocol, enabling efficient and dynamic routing within its encrypted IPv6 overlay network.',
},
],
]
@@ -65,7 +60,7 @@ export function Faqs() {
Frequently asked questions
diff --git a/src/components/Features.tsx b/src/components/Features.tsx
new file mode 100644
index 0000000..5c2702b
--- /dev/null
+++ b/src/components/Features.tsx
@@ -0,0 +1,111 @@
+import Pathfinding from '@/components/Pathfinding'
+import MessageBus from '@/components/MessageBus'
+import ProxyDetection from '@/components/ProxyDetection'
+import ProxyForwarding from '@/components/ProxyForwarding'
+import ContentDistribution from '@/components/ContentDistribution'
+
+export function Features() {
+ return (
+
+
+
Core Components
+
+ Network Capabilities
+
+
+ Built for resilience and autonomy, the Mycelium Network dynamically connects nodes through intelligent routing, proxy discovery, and decentralized delivery.
+
+
+Each component — from message passing to content distribution — works in harmony to create a fully self-healing, self-optimizing data mesh.
+
+
+
+
+
+
+
+
Routing
+
+ Automatic pathfinding
+
+
+ The Mycelium Network automatically discovers the shortest and fastest routes between nodes,
+ ensuring optimal data flow and network efficiency without manual configuration.
+
+
+
+
+
+
+
+
+
+
+
Communication
+
+ Distributed message bus
+
+
+ Acts as a global message layer that lets nodes exchange information seamlessly.
+ Enables resilient, asynchronous communication across the entire decentralized mesh.
+
+
+
+
+
+
+
+
+
+
+
Discovery
+
+ Automatic proxy detection
+
+
+ The system continuously scans for open SOCKS5 proxies within the network,
+ making it effortless to find available connection points without manual setup.
+
+
+
+
+
+
+
+
+
+
+
Connectivity
+
+ Seamless proxy forwarding
+
+
+ Local SOCKS5 connections can be forwarded through nearby nodes or remote proxies.
+ When browsers use the local proxy, traffic moves securely through the mesh—like a built-in VPN.
+
+
+
+
+
+
+
+
+
+
+
Delivery
+
+ Decentralized content distribution
+
+
+ Mycelium can serve data from distributed 0-DBs, creating a CDN-like layer that delivers
+ content faster and more reliably—without relying on centralized servers.
+
+
+
+
+
+
+
+
+ )
+}
diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx
index 439307e..9ee891d 100644
--- a/src/components/Footer.tsx
+++ b/src/components/Footer.tsx
@@ -4,33 +4,20 @@ import Link from 'next/link'
import { Button } from '@/components/Button'
import { Container } from '@/components/Container'
import { TextField } from '@/components/Fields'
-import { Logomark } from '@/components/Logo'
import { NavLinks } from '@/components/NavLinks'
-import qrCode from '@/images/qr-code.svg'
-
-function QrCodeBorder(props: React.ComponentPropsWithoutRef<'svg'>) {
- return (
-
- )
-}
+import github from '@/images/github.svg'
export function Footer() {
return (