diff --git a/bun.lockb b/bun.lockb
index 2e09d4e..4736342 100755
Binary files a/bun.lockb and b/bun.lockb differ
diff --git a/package.json b/package.json
index c93b86e..bd926c0 100644
--- a/package.json
+++ b/package.json
@@ -18,6 +18,7 @@
"@mui/material-nextjs": "^6.3.1",
"@mui/x-charts": "^7.23.2",
"@tailwindcss/typography": "^0.5.15",
+ "animate.css": "^4.1.1",
"axios": "^1.7.9",
"axios-case-converter": "^1.1.1",
"cookies-next": "^5.0.2",
diff --git a/src/assets/products/solar-network/icon.png b/src/assets/products/solar-network/icon.png
new file mode 100644
index 0000000..c9f3308
Binary files /dev/null and b/src/assets/products/solar-network/icon.png differ
diff --git a/src/pages/products/solar-network.tsx b/src/pages/products/solar-network.tsx
new file mode 100644
index 0000000..92c997f
--- /dev/null
+++ b/src/pages/products/solar-network.tsx
@@ -0,0 +1,204 @@
+import {
+ Link,
+ Container,
+ Box,
+ Typography,
+ Chip,
+ Table,
+ TableBody,
+ TableCell,
+ TableHead,
+ TableRow,
+ Accordion,
+ AccordionDetails,
+ AccordionSummary,
+} from '@mui/material'
+import { JSX } from 'react'
+import Image from 'next/image'
+import NextLink from 'next/link'
+
+import ArrowDownward from '@mui/icons-material/ArrowDownward'
+import DownloadIcon from '@mui/icons-material/Download'
+import LaunchIcon from '@mui/icons-material/Launch'
+import AppleIcon from '@mui/icons-material/Apple'
+import AndroidIcon from '@mui/icons-material/Android'
+import WindowIcon from '@mui/icons-material/Window'
+import WebIcon from '@mui/icons-material/Public'
+import CodeIcon from '@mui/icons-material/Code'
+
+import ImgSolarNetworkIcon from '@/assets/products/solar-network/icon.png'
+import ImgSolarNetworkAlpha from '@/assets/products/solar-network/alpha.webp'
+
+import 'animate.css'
+
+interface DownloadableAsset {
+ icon: JSX.Element
+ title: string
+ href: string
+ open?: boolean
+}
+
+interface AskableQuestion {
+ question: string
+ answer: string
+}
+
+export default function ProductSolarNetwork() {
+ const downloadableAssets: DownloadableAsset[] = [
+ {
+ icon: ,
+ title: 'iOS / macOS (App Store)',
+ href: 'https://apps.apple.com/us/app/solian/id6499032345?itscg=30200&itsct=apps_box_link&mttnsubad=6499032345',
+ },
+ {
+ icon: ,
+ title: 'iOS / macOS (TestFlight)',
+ href: 'https://testflight.apple.com/join/YJ0lmN6O',
+ },
+ {
+ icon: ,
+ title: 'Android',
+ href: 'https://files.solsynth.dev/production01/solian/app-arm64-v8a-release.apk',
+ },
+ {
+ icon: ,
+ title: 'Windows',
+ href: 'https://files.solsynth.dev/production01/solian/windows-x86_64-release.zip',
+ },
+ {
+ icon: ,
+ title: 'Web',
+ href: 'https://sn.solsynth.dev',
+ open: true,
+ },
+ {
+ icon: ,
+ title: 'Source Code',
+ href: 'https://github.com/Solsynth/HyperNet.Surface',
+ },
+ ]
+
+ const askableQuestions: AskableQuestion[] = [
+ {
+ question: "What's the relationship between Solar Network and Solian?",
+ answer:
+ 'Solian is the official app made for Solar Network. And the Solar Network is the official HyperNet instance hosted by Solsynth LLC. For simple, Solian is the app, and the Solar Network is the platform.',
+ },
+ {
+ question: "What's the relationship between Solar Network and HyperNet?",
+ answer:
+ 'HyperNet is the entire project including frontend app (also knowns as Solian for public) and the backend server. And the Solar Network is the official HyperNet instance which hosted and managed by Solsynth LLC who developed the HyperNet Project.',
+ },
+ {
+ question: 'Which rules do I need to follow while using Solar Network?',
+ answer:
+ 'Check out our Terms & Conditions for a detailed explanation of what you can do and cannot do on Solar Network. If you violate any of these rules, we have the right to suspend or terminate your account., you can see them in the drawer.',
+ },
+ {
+ question: 'If I have any question about Solar Network, where can I get help?',
+ answer: 'Feel free to email as at lily@solsynth.dev',
+ },
+ ]
+
+ return (
+
+
+
+
+
+ Solar Network
+
+
+
+
+
+
+ The next generation Social Network platform.
+
+
+
+ Download
+
+
+
+
+
+
+
+
+
+ Download
+
+
+