- Bank-grade payment infrastructure for the next generation of decentralized applications.
- Accept payments across all SVM networks with enterprise reliability and zero additional fees.
+ Accept payments from Ethereum, BNB Chain, Polygon → Solana, Sonic, Eclipse, s00n.
+ One SDK, all SVM networks, zero platform fees.
- Enterprise-grade architecture
+ Start building in 60 seconds
- Built from the ground up with bank-level security, institutional reliability, and developer-first experience that scales from prototype to production.
+ Three simple steps to integrate cross-chain payments. No complex setup, no lengthy onboarding, no hidden complexity.
-
- {/* Cross-Network */}
+
+ {/* Step 1: Install */}
-
-
-
-
-
- Universal Network Support
-
-
- One integration across all SVM networks. Seamlessly accept payments on Solana, Sonic, Eclipse, and s00n with identical APIs and consistent developer experience.
+
+
+ 1
+
+
Install SDK
+
+ npm install svm-pay
+
+
+ Install with npm, yarn, or pnpm. Zero configuration required, works with any JavaScript framework.
- {/* Premium Code Example Section - Fullscreen */}
+ {/* Use Cases & Tutorials Section */}
- Ship in minutes, not weeks
+ Real-world use cases
- Our SDK abstracts away blockchain complexity while maintaining full control. From integration to production in a single afternoon.
+ From e-commerce to DeFi, see how developers are building the next generation of payment experiences with SVM-Pay.
-
- {/* React Integration */}
-
+
+ {/* E-commerce Integration */}
+
-
Frontend Integration
-
Drop-in React components with built-in wallet connection and transaction handling
+
+
+
+
E-commerce Integration
+
Accept crypto payments in your online store with automatic order fulfillment
- One API, infinite possibilities
+ Cross-chain by design
- Connect to the entire SVM ecosystem with a single integration. Support multiple networks without changing your codebase.
+ Accept payments from any EVM network to any SVM network. Our bridge infrastructure handles the complexity so you don't have to.
-
- {/* Solana */}
-
-
-
- S
-
-
Solana
-
The high-performance blockchain powering the future of DeFi and Web3 applications
- Ready to transform
+ Ready to build the future
- payment infrastructure?
+ of payments?
- Join thousands of developers building the future of decentralized payments.
- From startup to enterprise, SVM-Pay scales with your business.
+ Join thousands of developers already building with SVM-Pay.
+ From your first payment to enterprise scale, we've got you covered.
- import { SVMPay } from 'svm-pay'
+ {"import { SVMPay } from 'svm-pay'"}
TypeScript-first with full intellisense. Initialize with your preferred network configuration.
@@ -187,7 +187,7 @@ export default async function IndexPage({
- {`import { SVMPay } from 'svm-pay';\n\nexport function Checkout() {\n const payment = new SVMPay();\n \n return (\n \n );\n}`}
+ {"import { SVMPay } from 'svm-pay';\n\nexport function Checkout() {\n const payment = new SVMPay();\n \n return (\n \n );\n}"}
diff --git a/website/apps/nextjs/src/app/admin/login/page.tsx b/website/apps/nextjs/src/app/admin/login/page.tsx
index abbb32c..a4bf2ee 100644
--- a/website/apps/nextjs/src/app/admin/login/page.tsx
+++ b/website/apps/nextjs/src/app/admin/login/page.tsx
@@ -2,24 +2,20 @@
import React from "react";
import Image from "next/image";
import Link from "next/link";
-import { useWallet } from '@solana/wallet-adapter-react';
-import { WalletMultiButton } from '@solana/wallet-adapter-react-ui';
import { cn } from "@saasfly/ui";
import { CardBody, CardContainer, CardItem } from "@saasfly/ui/3d-card";
import { buttonVariants } from "@saasfly/ui/button";
import * as Icons from "@saasfly/ui/icons";
+import { SolanaWalletProvider } from "~/lib/sdk/solana-provider";
-export default function LoginPage() {
- // Use try-catch to handle missing wallet context gracefully
- let walletState = { publicKey: null, connecting: false };
- try {
- const { publicKey, connecting } = useWallet();
- walletState = { publicKey, connecting };
- } catch (error) {
- console.warn("Wallet context not available:", error);
- }
+// Dynamic import for wallet components to avoid SSR issues
+const WalletConnectionContent = React.lazy(() =>
+ import("~/components/wallet-connection-content").then(module => ({
+ default: module.WalletConnectionContent
+ }))
+);
- const { publicKey, connecting } = walletState;
+export default function LoginPage() {
const [isLoading, setIsLoading] = React.useState(false);
return (
@@ -58,9 +54,15 @@ export default function LoginPage() {
>
Powered by WalletConnect
-
-
-
+
+
+ Loading...
+
+ }>
+
+
+
diff --git a/website/apps/nextjs/src/components/wallet-connection-content.tsx b/website/apps/nextjs/src/components/wallet-connection-content.tsx
new file mode 100644
index 0000000..379dd99
--- /dev/null
+++ b/website/apps/nextjs/src/components/wallet-connection-content.tsx
@@ -0,0 +1,15 @@
+"use client";
+
+import { useWallet } from '@solana/wallet-adapter-react';
+import { WalletMultiButton } from '@solana/wallet-adapter-react-ui';
+
+export function WalletConnectionContent() {
+ // This component can safely use wallet hooks since it's wrapped in the provider
+ const { publicKey, connecting } = useWallet();
+
+ return (
+
+
+
+ );
+}
\ No newline at end of file
From 2a9a3251dfa2b7c20d3d130cc47d83a8863135d1 Mon Sep 17 00:00:00 2001
From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com>
Date: Sat, 5 Jul 2025 11:18:30 +0000
Subject: [PATCH 09/23] Complete rebuild of svm-pay.com from scratch with
top-notch quality
Co-authored-by: 0xrinegade <101195284+0xrinegade@users.noreply.github.com>
---
netlify.toml | 41 +-
website/.env.example | 45 -
website/.github/FUNDING.yml | 2 -
website/.github/workflows/ci.yml | 63 -
website/.gitignore | 68 +-
website/CODE_OF_CONDUCT.md | 128 -
website/CONTRIBUTING.md | 51 -
website/LICENSE | 21 -
website/README.md | 273 +-
website/README_de.md | 198 -
website/README_vi.md | 196 -
website/README_zh.md | 225 -
website/SECURITY.md | 17 -
website/apps/.gitignore | 2 -
website/apps/auth-proxy/.env.example | 7 -
website/apps/auth-proxy/package.json | 33 -
website/apps/auth-proxy/routes/[...auth].ts | 17 -
website/apps/auth-proxy/tsconfig.json | 4 -
website/apps/nextjs/.eslintignore | 11 -
website/apps/nextjs/.prettierignore | 2 -
website/apps/nextjs/contentlayer.config.ts | 199 -
website/apps/nextjs/next.config.mjs | 35 -
website/apps/nextjs/package.json | 97 -
website/apps/nextjs/postcss.config.cjs | 1 -
website/apps/nextjs/public/favicon.ico | Bin 25429 -> 0 bytes
.../nextjs/public/images/avatars/nok8s.jpeg | Bin 29819 -> 0 bytes
.../public/images/avatars/saasfly-logo.svg | 32 -
.../nextjs/public/images/blog/blog-post-1.jpg | Bin 69040 -> 0 bytes
.../nextjs/public/images/blog/blog-post-2.jpg | Bin 69414 -> 0 bytes
.../nextjs/public/images/blog/blog-post-3.jpg | Bin 70573 -> 0 bytes
.../nextjs/public/images/blog/blog-post-4.jpg | Bin 89779 -> 0 bytes
website/apps/nextjs/public/images/noise.webp | Bin 732274 -> 0 bytes
website/apps/nextjs/public/logo.svg | 32 -
.../nextjs/src/app/[lang]/(auth)/layout.tsx | 7 -
.../src/app/[lang]/(auth)/login/page.tsx | 69 -
.../src/app/[lang]/(auth)/register/page.tsx | 69 -
.../(dashboard)/dashboard/billing/loading.tsx | 29 -
.../(dashboard)/dashboard/billing/page.tsx | 41 -
.../dashboard/billing/subscription-form.tsx | 19 -
.../[lang]/(dashboard)/dashboard/layout.tsx | 25 -
.../[lang]/(dashboard)/dashboard/loading.tsx | 19 -
.../app/[lang]/(dashboard)/dashboard/page.tsx | 34 -
.../dashboard/settings/loading.tsx | 17 -
.../(dashboard)/dashboard/settings/page.tsx | 25 -
.../[lang]/(docs)/docs/[[...slug]]/page.tsx | 107 -
.../src/app/[lang]/(docs)/docs/layout.tsx | 22 -
.../nextjs/src/app/[lang]/(docs)/layout.tsx | 25 -
.../editor/cluster/[clusterId]/page.tsx | 28 -
.../src/app/[lang]/(editor)/editor/layout.tsx | 25 -
.../(marketing)/blog/[...slug]/page.tsx | 168 -
.../src/app/[lang]/(marketing)/blog/page.tsx | 22 -
.../src/app/[lang]/(marketing)/layout.tsx | 13 -
.../src/app/[lang]/(marketing)/page.tsx | 694 -
.../[lang]/(marketing)/pricing/loading.tsx | 28 -
.../app/[lang]/(marketing)/pricing/page.tsx | 82 -
.../admin/(dashboard)/dashboard/layout.tsx | 25 -
.../admin/(dashboard)/dashboard/loading.tsx | 19 -
.../app/admin/(dashboard)/dashboard/page.tsx | 439 -
website/apps/nextjs/src/app/admin/layout.tsx | 7 -
.../apps/nextjs/src/app/admin/login/page.tsx | 71 -
.../src/app/api/auth/[...nextauth]/route.ts | 29 -
.../src/app/api/trpc/edge/[trpc]/route.ts | 22 -
.../src/app/api/webhooks/stripe/route.ts | 22 -
website/apps/nextjs/src/app/layout.tsx | 108 -
website/apps/nextjs/src/app/robots.ts | 10 -
.../apps/nextjs/src/components/base-item.tsx | 12 -
.../nextjs/src/components/billing-form.tsx | 94 -
.../apps/nextjs/src/components/blog-card.tsx | 72 -
.../nextjs/src/components/blog/blog-posts.tsx | 94 -
.../src/components/card-hover-effect.tsx | 29 -
.../nextjs/src/components/card-skeleton.tsx | 17 -
.../apps/nextjs/src/components/code-copy.tsx | 36 -
.../apps/nextjs/src/components/comments.tsx | 76 -
.../src/components/content/mdx-card.tsx | 38 -
.../src/components/content/mdx-components.tsx | 170 -
.../nextjs/src/components/content/toc.tsx | 115 -
.../src/components/docs/page-header.tsx | 25 -
.../apps/nextjs/src/components/docs/pager.tsx | 74 -
.../nextjs/src/components/docs/search.tsx | 39 -
.../src/components/docs/sidebar-nav.tsx | 71 -
.../nextjs/src/components/document-guide.tsx | 21 -
.../src/components/empty-placeholder.tsx | 78 -
.../nextjs/src/components/features-card.tsx | 95 -
.../nextjs/src/components/features-grid.tsx | 68 -
.../nextjs/src/components/github-star.tsx | 15 -
website/apps/nextjs/src/components/header.tsx | 21 -
.../src/components/infiniteMovingCards.tsx | 46 -
.../src/components/k8s/cluster-config.tsx | 356 -
.../components/k8s/cluster-create-button.tsx | 87 -
.../src/components/k8s/cluster-item.tsx | 41 -
.../src/components/k8s/cluster-operation.tsx | 117 -
.../nextjs/src/components/locale-change.tsx | 46 -
.../apps/nextjs/src/components/main-nav.tsx | 57 -
.../nextjs/src/components/meteors-card.tsx | 30 -
.../apps/nextjs/src/components/mobile-nav.tsx | 49 -
.../nextjs/src/components/modal-provider.tsx | 18 -
website/apps/nextjs/src/components/modal.tsx | 54 -
.../nextjs/src/components/mode-toggle.tsx | 43 -
website/apps/nextjs/src/components/nav.tsx | 58 -
website/apps/nextjs/src/components/navbar.tsx | 121 -
.../components/price/billing-form-button.tsx | 58 -
.../src/components/price/pricing-cards.tsx | 198 -
.../src/components/price/pricing-faq.tsx | 43 -
.../apps/nextjs/src/components/questions.tsx | 59 -
.../src/components/rightside-marketing.tsx | 53 -
website/apps/nextjs/src/components/shell.tsx | 32 -
.../nextjs/src/components/shimmer-button.tsx | 60 -
.../nextjs/src/components/sign-in-modal.tsx | 40 -
.../nextjs/src/components/site-footer.tsx | 45 -
.../apps/nextjs/src/components/sparkles.tsx | 42 -
.../src/components/tailwind-indicator.tsx | 16 -
.../src/components/textGenerateEffect.tsx | 12 -
.../nextjs/src/components/theme-provider.tsx | 5 -
.../nextjs/src/components/theme-toggle.tsx | 56 -
.../src/components/typewriterEffectSmooth.tsx | 38 -
.../src/components/user-account-nav.tsx | 84 -
.../nextjs/src/components/user-auth-form.tsx | 107 -
.../nextjs/src/components/user-avatar.tsx | 24 -
.../nextjs/src/components/user-name-form.tsx | 117 -
.../nextjs/src/components/video-scroll.tsx | 37 -
.../components/wallet-connection-content.tsx | 15 -
website/apps/nextjs/src/components/wobble.tsx | 60 -
.../nextjs/src/components/word-reveal.tsx | 9 -
.../nextjs/src/config/dictionaries/en.json | 127 -
.../nextjs/src/config/dictionaries/ja.json | 127 -
.../nextjs/src/config/dictionaries/ko.json | 128 -
.../nextjs/src/config/dictionaries/zh.json | 127 -
website/apps/nextjs/src/config/i18n-config.ts | 14 -
website/apps/nextjs/src/config/ph-config.ts | 3 -
.../nextjs/src/config/price/price-data.ts | 294 -
.../nextjs/src/config/price/price-faq-data.ts | 136 -
website/apps/nextjs/src/config/providers.tsx | 47 -
website/apps/nextjs/src/config/site.ts | 9 -
.../apps/nextjs/src/config/ui/dashboard.ts | 44 -
website/apps/nextjs/src/config/ui/docs.ts | 102 -
.../apps/nextjs/src/config/ui/marketing.ts | 33 -
.../apps/nextjs/src/content/authors/nok8s.mdx | 5 -
.../src/content/blog/deploying-next-apps.mdx | 176 -
.../dynamic-routing-static-regeneration.mdx | 176 -
.../blog/preview-mode-headless-cms.mdx | 176 -
.../content/blog/server-client-components.mdx | 176 -
.../src/content/docs/documentation/index.mdx | 60 -
.../nextjs/src/content/docs/in-progress.mdx | 6 -
.../apps/nextjs/src/content/docs/index.mdx | 54 -
.../guides/using-next-auth-next-14.mdx | 179 -
website/apps/nextjs/src/dictionaries/de.json | 138 -
website/apps/nextjs/src/dictionaries/en.json | 138 -
website/apps/nextjs/src/dictionaries/vi.json | 138 -
website/apps/nextjs/src/dictionaries/zh.json | 138 -
website/apps/nextjs/src/env.mjs | 55 -
.../apps/nextjs/src/hooks/use-lock-body.ts | 12 -
.../apps/nextjs/src/hooks/use-media-query.ts | 46 -
website/apps/nextjs/src/hooks/use-mounted.ts | 11 -
website/apps/nextjs/src/hooks/use-scroll.ts | 16 -
.../apps/nextjs/src/hooks/use-signin-modal.ts | 13 -
website/apps/nextjs/src/lib/currency.ts | 6 -
.../apps/nextjs/src/lib/dictionaries/de.json | 135 -
.../apps/nextjs/src/lib/dictionaries/en.json | 144 -
.../apps/nextjs/src/lib/dictionaries/vi.json | 135 -
.../apps/nextjs/src/lib/dictionaries/zh.json | 144 -
.../apps/nextjs/src/lib/generate-pattern.ts | 500 -
website/apps/nextjs/src/lib/get-dictionary.ts | 13 -
.../nextjs/src/lib/sdk/solana-integration.ts | 7 -
.../nextjs/src/lib/sdk/solana-payment.tsx | 106 -
.../nextjs/src/lib/sdk/solana-provider.tsx | 73 -
website/apps/nextjs/src/lib/toc.ts | 77 -
website/apps/nextjs/src/lib/use-debounce.tsx | 17 -
website/apps/nextjs/src/lib/use-mounted.ts | 11 -
website/apps/nextjs/src/lib/utils.ts | 14 -
.../apps/nextjs/src/lib/validations/user.ts | 5 -
website/apps/nextjs/src/lib/zod-form.tsx | 16 -
website/apps/nextjs/src/middleware.ts | 136 -
website/apps/nextjs/src/styles/calsans.ttf | Bin 148964 -> 0 bytes
.../src/styles/fonts/CalSans-SemiBold.ttf | Bin 148964 -> 0 bytes
.../src/styles/fonts/CalSans-SemiBold.woff | Bin 52504 -> 0 bytes
.../src/styles/fonts/CalSans-SemiBold.woff2 | Bin 40932 -> 0 bytes
.../nextjs/src/styles/fonts/Inter-Bold.ttf | Bin 316100 -> 0 bytes
.../nextjs/src/styles/fonts/Inter-Regular.ttf | Bin 309828 -> 0 bytes
website/apps/nextjs/src/styles/globals.css | 85 -
website/apps/nextjs/src/styles/mdx.css | 39 -
.../apps/nextjs/src/styles/theme/default.css | 61 -
website/apps/nextjs/src/trpc/client.ts | 31 -
website/apps/nextjs/src/trpc/server.ts | 42 -
website/apps/nextjs/src/trpc/shared.ts | 49 -
website/apps/nextjs/src/types/index.d.ts | 83 -
website/apps/nextjs/src/types/k8s.d.ts | 25 -
website/apps/nextjs/src/types/meteors.d.ts | 6 -
website/apps/nextjs/src/types/next-auth.d.ts | 17 -
website/apps/nextjs/src/utils/api.ts | 7 -
website/apps/nextjs/tailwind.config.ts | 8 -
website/apps/nextjs/tsconfig.json | 26 -
website/bun.lockb | Bin 949512 -> 0 bytes
website/eslint.config.js | 23 +
website/index.html | 22 +
website/package-lock.json | 4427 ++++++
website/package.json | 67 +-
website/packages/api/.eslintignore | 2 -
website/packages/api/package.json | 53 -
website/packages/api/src/edge.ts | 14 -
website/packages/api/src/env.mjs | 41 -
website/packages/api/src/index.ts | 21 -
website/packages/api/src/root.ts | 6 -
website/packages/api/src/router/auth.ts | 23 -
website/packages/api/src/router/customer.ts | 18 -
.../packages/api/src/router/health_check.ts | 17 -
website/packages/api/src/router/index.ts | 8 -
website/packages/api/src/router/k8s.ts | 19 -
website/packages/api/src/router/solana.ts | 34 -
website/packages/api/src/transformer.ts | 27 -
website/packages/api/src/trpc.ts | 52 -
website/packages/api/tsconfig.json | 13 -
website/packages/common/.eslintignore | 1 -
website/packages/common/package.json | 42 -
website/packages/common/src/config/site.ts | 9 -
website/packages/common/src/email.ts | 5 -
.../common/src/emails/magic-link-email.tsx | 69 -
website/packages/common/src/env.mjs | 38 -
website/packages/common/src/index.ts | 5 -
website/packages/common/src/subscriptions.ts | 89 -
website/packages/common/tsconfig.json | 8 -
website/packages/db/index.ts | 10 -
website/packages/db/package.json | 45 -
website/packages/db/prisma/README.md | 4 -
website/packages/db/prisma/enums.ts | 16 -
website/packages/db/prisma/schema.prisma | 103 -
website/packages/db/prisma/types.ts | 73 -
website/packages/db/tsconfig.json | 8 -
website/packages/ui/.eslintignore | 17 -
website/packages/ui/package.json | 138 -
website/packages/ui/src/3d-card.tsx | 154 -
website/packages/ui/src/accordion.tsx | 60 -
website/packages/ui/src/alert-dialog.tsx | 149 -
website/packages/ui/src/alert.tsx | 61 -
.../ui/src/animated-gradient-text.tsx | 28 -
website/packages/ui/src/animated-list.tsx | 61 -
website/packages/ui/src/animated-tooltip.tsx | 110 -
website/packages/ui/src/avatar.tsx | 50 -
website/packages/ui/src/background-lines.tsx | 146 -
website/packages/ui/src/button.tsx | 56 -
website/packages/ui/src/calendar.tsx | 70 -
website/packages/ui/src/callout.tsx | 32 -
website/packages/ui/src/card-hover-effect.tsx | 112 -
website/packages/ui/src/card-skeleton.tsx | 17 -
website/packages/ui/src/card.tsx | 88 -
website/packages/ui/src/checkbox.tsx | 30 -
website/packages/ui/src/colorful-text.tsx | 55 -
website/packages/ui/src/command.tsx | 156 -
.../ui/src/container-scroll-animation.tsx | 96 -
website/packages/ui/src/data-table.tsx | 80 -
website/packages/ui/src/data/globe.json | 12306 ----------------
website/packages/ui/src/dialog.tsx | 125 -
website/packages/ui/src/dropdown-menu.tsx | 200 -
website/packages/ui/src/following-pointer.tsx | 139 -
website/packages/ui/src/form.tsx | 179 -
website/packages/ui/src/glowing-effect.tsx | 192 -
website/packages/ui/src/icons.tsx | 228 -
website/packages/ui/src/index.ts | 1 -
.../packages/ui/src/infinite-moving-cards.tsx | 123 -
website/packages/ui/src/input.tsx | 24 -
website/packages/ui/src/label.tsx | 26 -
website/packages/ui/src/marquee.tsx | 51 -
website/packages/ui/src/meteors.tsx | 33 -
website/packages/ui/src/popover.tsx | 31 -
website/packages/ui/src/scroll-area.tsx | 48 -
website/packages/ui/src/select.tsx | 120 -
website/packages/ui/src/sheet.tsx | 228 -
website/packages/ui/src/skeleton.tsx | 15 -
website/packages/ui/src/sparkles.tsx | 435 -
website/packages/ui/src/switch.tsx | 29 -
website/packages/ui/src/table.tsx | 115 -
website/packages/ui/src/tabs.tsx | 55 -
.../packages/ui/src/text-generate-effect.tsx | 65 -
website/packages/ui/src/text-reveal.tsx | 73 -
website/packages/ui/src/toast.tsx | 127 -
website/packages/ui/src/toaster.tsx | 35 -
website/packages/ui/src/typewriter-effect.tsx | 102 -
website/packages/ui/src/use-toast.tsx | 189 -
website/packages/ui/src/utils/cn.ts | 6 -
website/packages/ui/src/wobble-card.tsx | 80 -
website/packages/ui/tailwind.config.ts | 12 -
website/packages/ui/tsconfig.json | 8 -
website/postcss.config.js | 6 +
website/public/svm-logo.svg | 13 +
website/public/vite.svg | 1 +
website/saasfly-logo.svg | 115 -
website/setupyourpay.png | Bin 3456 -> 0 bytes
website/src/App.css | 42 +
website/src/App.tsx | 22 +
website/src/assets/react.svg | 1 +
website/src/components/Documentation.tsx | 342 +
website/src/components/Features.tsx | 205 +
website/src/components/Footer.tsx | 165 +
website/src/components/Hero.tsx | 157 +
website/src/components/Stats.tsx | 109 +
website/src/components/TechStack.tsx | 248 +
website/src/components/ui/Badge.tsx | 34 +
website/src/components/ui/Button.tsx | 39 +
website/src/index.css | 33 +
website/src/lib/utils.ts | 22 +
website/src/main.tsx | 10 +
website/src/vite-env.d.ts | 1 +
website/tailwind.config.js | 48 +-
website/tooling/eslint-config/base.js | 47 -
website/tooling/eslint-config/nextjs.js | 9 -
website/tooling/eslint-config/package.json | 41 -
website/tooling/eslint-config/react.js | 24 -
website/tooling/eslint-config/tsconfig.json | 8 -
website/tooling/prettier-config/index.mjs | 31 -
website/tooling/prettier-config/package.json | 21 -
website/tooling/prettier-config/tsconfig.json | 8 -
website/tooling/tailwind-config/.eslintignore | 1 -
website/tooling/tailwind-config/index.ts | 134 -
website/tooling/tailwind-config/package.json | 36 -
website/tooling/tailwind-config/postcss.js | 6 -
website/tooling/tailwind-config/tsconfig.json | 8 -
website/tooling/typescript-config/base.json | 23 -
.../tooling/typescript-config/package.json | 8 -
website/tsconfig.app.json | 27 +
website/tsconfig.json | 7 +
website/tsconfig.node.json | 25 +
website/turbo.json | 32 -
website/turbo/generators/config.ts | 46 -
.../generators/templates/package.json.hbs | 36 -
.../generators/templates/tsconfig.json.hbs | 13 -
website/twillot.png | Bin 2370 -> 0 bytes
website/vercel.json | 5 -
website/vite.config.ts | 7 +
327 files changed, 6150 insertions(+), 31279 deletions(-)
delete mode 100644 website/.env.example
delete mode 100644 website/.github/FUNDING.yml
delete mode 100644 website/.github/workflows/ci.yml
delete mode 100644 website/CODE_OF_CONDUCT.md
delete mode 100644 website/CONTRIBUTING.md
delete mode 100644 website/LICENSE
delete mode 100644 website/README_de.md
delete mode 100644 website/README_vi.md
delete mode 100644 website/README_zh.md
delete mode 100644 website/SECURITY.md
delete mode 100644 website/apps/.gitignore
delete mode 100644 website/apps/auth-proxy/.env.example
delete mode 100644 website/apps/auth-proxy/package.json
delete mode 100644 website/apps/auth-proxy/routes/[...auth].ts
delete mode 100644 website/apps/auth-proxy/tsconfig.json
delete mode 100644 website/apps/nextjs/.eslintignore
delete mode 100644 website/apps/nextjs/.prettierignore
delete mode 100644 website/apps/nextjs/contentlayer.config.ts
delete mode 100644 website/apps/nextjs/next.config.mjs
delete mode 100644 website/apps/nextjs/package.json
delete mode 100644 website/apps/nextjs/postcss.config.cjs
delete mode 100644 website/apps/nextjs/public/favicon.ico
delete mode 100644 website/apps/nextjs/public/images/avatars/nok8s.jpeg
delete mode 100644 website/apps/nextjs/public/images/avatars/saasfly-logo.svg
delete mode 100644 website/apps/nextjs/public/images/blog/blog-post-1.jpg
delete mode 100644 website/apps/nextjs/public/images/blog/blog-post-2.jpg
delete mode 100644 website/apps/nextjs/public/images/blog/blog-post-3.jpg
delete mode 100644 website/apps/nextjs/public/images/blog/blog-post-4.jpg
delete mode 100644 website/apps/nextjs/public/images/noise.webp
delete mode 100644 website/apps/nextjs/public/logo.svg
delete mode 100644 website/apps/nextjs/src/app/[lang]/(auth)/layout.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(auth)/login/page.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(auth)/register/page.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(dashboard)/dashboard/billing/loading.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(dashboard)/dashboard/billing/page.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(dashboard)/dashboard/billing/subscription-form.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(dashboard)/dashboard/layout.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(dashboard)/dashboard/loading.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(dashboard)/dashboard/page.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(dashboard)/dashboard/settings/loading.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(dashboard)/dashboard/settings/page.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(docs)/docs/[[...slug]]/page.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(docs)/docs/layout.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(docs)/layout.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(editor)/editor/cluster/[clusterId]/page.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(editor)/editor/layout.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(marketing)/blog/[...slug]/page.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(marketing)/blog/page.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(marketing)/layout.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(marketing)/page.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(marketing)/pricing/loading.tsx
delete mode 100644 website/apps/nextjs/src/app/[lang]/(marketing)/pricing/page.tsx
delete mode 100644 website/apps/nextjs/src/app/admin/(dashboard)/dashboard/layout.tsx
delete mode 100644 website/apps/nextjs/src/app/admin/(dashboard)/dashboard/loading.tsx
delete mode 100644 website/apps/nextjs/src/app/admin/(dashboard)/dashboard/page.tsx
delete mode 100644 website/apps/nextjs/src/app/admin/layout.tsx
delete mode 100644 website/apps/nextjs/src/app/admin/login/page.tsx
delete mode 100644 website/apps/nextjs/src/app/api/auth/[...nextauth]/route.ts
delete mode 100644 website/apps/nextjs/src/app/api/trpc/edge/[trpc]/route.ts
delete mode 100644 website/apps/nextjs/src/app/api/webhooks/stripe/route.ts
delete mode 100644 website/apps/nextjs/src/app/layout.tsx
delete mode 100644 website/apps/nextjs/src/app/robots.ts
delete mode 100644 website/apps/nextjs/src/components/base-item.tsx
delete mode 100644 website/apps/nextjs/src/components/billing-form.tsx
delete mode 100644 website/apps/nextjs/src/components/blog-card.tsx
delete mode 100644 website/apps/nextjs/src/components/blog/blog-posts.tsx
delete mode 100644 website/apps/nextjs/src/components/card-hover-effect.tsx
delete mode 100644 website/apps/nextjs/src/components/card-skeleton.tsx
delete mode 100644 website/apps/nextjs/src/components/code-copy.tsx
delete mode 100644 website/apps/nextjs/src/components/comments.tsx
delete mode 100644 website/apps/nextjs/src/components/content/mdx-card.tsx
delete mode 100644 website/apps/nextjs/src/components/content/mdx-components.tsx
delete mode 100644 website/apps/nextjs/src/components/content/toc.tsx
delete mode 100644 website/apps/nextjs/src/components/docs/page-header.tsx
delete mode 100644 website/apps/nextjs/src/components/docs/pager.tsx
delete mode 100644 website/apps/nextjs/src/components/docs/search.tsx
delete mode 100644 website/apps/nextjs/src/components/docs/sidebar-nav.tsx
delete mode 100644 website/apps/nextjs/src/components/document-guide.tsx
delete mode 100644 website/apps/nextjs/src/components/empty-placeholder.tsx
delete mode 100644 website/apps/nextjs/src/components/features-card.tsx
delete mode 100644 website/apps/nextjs/src/components/features-grid.tsx
delete mode 100644 website/apps/nextjs/src/components/github-star.tsx
delete mode 100644 website/apps/nextjs/src/components/header.tsx
delete mode 100644 website/apps/nextjs/src/components/infiniteMovingCards.tsx
delete mode 100644 website/apps/nextjs/src/components/k8s/cluster-config.tsx
delete mode 100644 website/apps/nextjs/src/components/k8s/cluster-create-button.tsx
delete mode 100644 website/apps/nextjs/src/components/k8s/cluster-item.tsx
delete mode 100644 website/apps/nextjs/src/components/k8s/cluster-operation.tsx
delete mode 100644 website/apps/nextjs/src/components/locale-change.tsx
delete mode 100644 website/apps/nextjs/src/components/main-nav.tsx
delete mode 100644 website/apps/nextjs/src/components/meteors-card.tsx
delete mode 100644 website/apps/nextjs/src/components/mobile-nav.tsx
delete mode 100644 website/apps/nextjs/src/components/modal-provider.tsx
delete mode 100644 website/apps/nextjs/src/components/modal.tsx
delete mode 100644 website/apps/nextjs/src/components/mode-toggle.tsx
delete mode 100644 website/apps/nextjs/src/components/nav.tsx
delete mode 100644 website/apps/nextjs/src/components/navbar.tsx
delete mode 100644 website/apps/nextjs/src/components/price/billing-form-button.tsx
delete mode 100644 website/apps/nextjs/src/components/price/pricing-cards.tsx
delete mode 100644 website/apps/nextjs/src/components/price/pricing-faq.tsx
delete mode 100644 website/apps/nextjs/src/components/questions.tsx
delete mode 100644 website/apps/nextjs/src/components/rightside-marketing.tsx
delete mode 100644 website/apps/nextjs/src/components/shell.tsx
delete mode 100644 website/apps/nextjs/src/components/shimmer-button.tsx
delete mode 100644 website/apps/nextjs/src/components/sign-in-modal.tsx
delete mode 100644 website/apps/nextjs/src/components/site-footer.tsx
delete mode 100644 website/apps/nextjs/src/components/sparkles.tsx
delete mode 100644 website/apps/nextjs/src/components/tailwind-indicator.tsx
delete mode 100644 website/apps/nextjs/src/components/textGenerateEffect.tsx
delete mode 100644 website/apps/nextjs/src/components/theme-provider.tsx
delete mode 100644 website/apps/nextjs/src/components/theme-toggle.tsx
delete mode 100644 website/apps/nextjs/src/components/typewriterEffectSmooth.tsx
delete mode 100644 website/apps/nextjs/src/components/user-account-nav.tsx
delete mode 100644 website/apps/nextjs/src/components/user-auth-form.tsx
delete mode 100644 website/apps/nextjs/src/components/user-avatar.tsx
delete mode 100644 website/apps/nextjs/src/components/user-name-form.tsx
delete mode 100644 website/apps/nextjs/src/components/video-scroll.tsx
delete mode 100644 website/apps/nextjs/src/components/wallet-connection-content.tsx
delete mode 100644 website/apps/nextjs/src/components/wobble.tsx
delete mode 100644 website/apps/nextjs/src/components/word-reveal.tsx
delete mode 100644 website/apps/nextjs/src/config/dictionaries/en.json
delete mode 100644 website/apps/nextjs/src/config/dictionaries/ja.json
delete mode 100644 website/apps/nextjs/src/config/dictionaries/ko.json
delete mode 100644 website/apps/nextjs/src/config/dictionaries/zh.json
delete mode 100644 website/apps/nextjs/src/config/i18n-config.ts
delete mode 100644 website/apps/nextjs/src/config/ph-config.ts
delete mode 100644 website/apps/nextjs/src/config/price/price-data.ts
delete mode 100644 website/apps/nextjs/src/config/price/price-faq-data.ts
delete mode 100644 website/apps/nextjs/src/config/providers.tsx
delete mode 100644 website/apps/nextjs/src/config/site.ts
delete mode 100644 website/apps/nextjs/src/config/ui/dashboard.ts
delete mode 100644 website/apps/nextjs/src/config/ui/docs.ts
delete mode 100644 website/apps/nextjs/src/config/ui/marketing.ts
delete mode 100644 website/apps/nextjs/src/content/authors/nok8s.mdx
delete mode 100644 website/apps/nextjs/src/content/blog/deploying-next-apps.mdx
delete mode 100644 website/apps/nextjs/src/content/blog/dynamic-routing-static-regeneration.mdx
delete mode 100644 website/apps/nextjs/src/content/blog/preview-mode-headless-cms.mdx
delete mode 100644 website/apps/nextjs/src/content/blog/server-client-components.mdx
delete mode 100644 website/apps/nextjs/src/content/docs/documentation/index.mdx
delete mode 100644 website/apps/nextjs/src/content/docs/in-progress.mdx
delete mode 100644 website/apps/nextjs/src/content/docs/index.mdx
delete mode 100644 website/apps/nextjs/src/content/guides/using-next-auth-next-14.mdx
delete mode 100644 website/apps/nextjs/src/dictionaries/de.json
delete mode 100644 website/apps/nextjs/src/dictionaries/en.json
delete mode 100644 website/apps/nextjs/src/dictionaries/vi.json
delete mode 100644 website/apps/nextjs/src/dictionaries/zh.json
delete mode 100644 website/apps/nextjs/src/env.mjs
delete mode 100644 website/apps/nextjs/src/hooks/use-lock-body.ts
delete mode 100644 website/apps/nextjs/src/hooks/use-media-query.ts
delete mode 100644 website/apps/nextjs/src/hooks/use-mounted.ts
delete mode 100644 website/apps/nextjs/src/hooks/use-scroll.ts
delete mode 100644 website/apps/nextjs/src/hooks/use-signin-modal.ts
delete mode 100644 website/apps/nextjs/src/lib/currency.ts
delete mode 100644 website/apps/nextjs/src/lib/dictionaries/de.json
delete mode 100644 website/apps/nextjs/src/lib/dictionaries/en.json
delete mode 100644 website/apps/nextjs/src/lib/dictionaries/vi.json
delete mode 100644 website/apps/nextjs/src/lib/dictionaries/zh.json
delete mode 100644 website/apps/nextjs/src/lib/generate-pattern.ts
delete mode 100644 website/apps/nextjs/src/lib/get-dictionary.ts
delete mode 100644 website/apps/nextjs/src/lib/sdk/solana-integration.ts
delete mode 100644 website/apps/nextjs/src/lib/sdk/solana-payment.tsx
delete mode 100644 website/apps/nextjs/src/lib/sdk/solana-provider.tsx
delete mode 100644 website/apps/nextjs/src/lib/toc.ts
delete mode 100644 website/apps/nextjs/src/lib/use-debounce.tsx
delete mode 100644 website/apps/nextjs/src/lib/use-mounted.ts
delete mode 100644 website/apps/nextjs/src/lib/utils.ts
delete mode 100644 website/apps/nextjs/src/lib/validations/user.ts
delete mode 100644 website/apps/nextjs/src/lib/zod-form.tsx
delete mode 100644 website/apps/nextjs/src/middleware.ts
delete mode 100644 website/apps/nextjs/src/styles/calsans.ttf
delete mode 100644 website/apps/nextjs/src/styles/fonts/CalSans-SemiBold.ttf
delete mode 100644 website/apps/nextjs/src/styles/fonts/CalSans-SemiBold.woff
delete mode 100644 website/apps/nextjs/src/styles/fonts/CalSans-SemiBold.woff2
delete mode 100644 website/apps/nextjs/src/styles/fonts/Inter-Bold.ttf
delete mode 100644 website/apps/nextjs/src/styles/fonts/Inter-Regular.ttf
delete mode 100644 website/apps/nextjs/src/styles/globals.css
delete mode 100644 website/apps/nextjs/src/styles/mdx.css
delete mode 100644 website/apps/nextjs/src/styles/theme/default.css
delete mode 100644 website/apps/nextjs/src/trpc/client.ts
delete mode 100644 website/apps/nextjs/src/trpc/server.ts
delete mode 100644 website/apps/nextjs/src/trpc/shared.ts
delete mode 100644 website/apps/nextjs/src/types/index.d.ts
delete mode 100644 website/apps/nextjs/src/types/k8s.d.ts
delete mode 100644 website/apps/nextjs/src/types/meteors.d.ts
delete mode 100644 website/apps/nextjs/src/types/next-auth.d.ts
delete mode 100644 website/apps/nextjs/src/utils/api.ts
delete mode 100644 website/apps/nextjs/tailwind.config.ts
delete mode 100644 website/apps/nextjs/tsconfig.json
delete mode 100755 website/bun.lockb
create mode 100644 website/eslint.config.js
create mode 100644 website/index.html
create mode 100644 website/package-lock.json
delete mode 100644 website/packages/api/.eslintignore
delete mode 100644 website/packages/api/package.json
delete mode 100644 website/packages/api/src/edge.ts
delete mode 100644 website/packages/api/src/env.mjs
delete mode 100644 website/packages/api/src/index.ts
delete mode 100644 website/packages/api/src/root.ts
delete mode 100644 website/packages/api/src/router/auth.ts
delete mode 100644 website/packages/api/src/router/customer.ts
delete mode 100644 website/packages/api/src/router/health_check.ts
delete mode 100644 website/packages/api/src/router/index.ts
delete mode 100644 website/packages/api/src/router/k8s.ts
delete mode 100644 website/packages/api/src/router/solana.ts
delete mode 100644 website/packages/api/src/transformer.ts
delete mode 100644 website/packages/api/src/trpc.ts
delete mode 100644 website/packages/api/tsconfig.json
delete mode 100644 website/packages/common/.eslintignore
delete mode 100644 website/packages/common/package.json
delete mode 100644 website/packages/common/src/config/site.ts
delete mode 100644 website/packages/common/src/email.ts
delete mode 100644 website/packages/common/src/emails/magic-link-email.tsx
delete mode 100644 website/packages/common/src/env.mjs
delete mode 100644 website/packages/common/src/index.ts
delete mode 100644 website/packages/common/src/subscriptions.ts
delete mode 100644 website/packages/common/tsconfig.json
delete mode 100644 website/packages/db/index.ts
delete mode 100644 website/packages/db/package.json
delete mode 100644 website/packages/db/prisma/README.md
delete mode 100644 website/packages/db/prisma/enums.ts
delete mode 100644 website/packages/db/prisma/schema.prisma
delete mode 100644 website/packages/db/prisma/types.ts
delete mode 100644 website/packages/db/tsconfig.json
delete mode 100644 website/packages/ui/.eslintignore
delete mode 100644 website/packages/ui/package.json
delete mode 100644 website/packages/ui/src/3d-card.tsx
delete mode 100644 website/packages/ui/src/accordion.tsx
delete mode 100644 website/packages/ui/src/alert-dialog.tsx
delete mode 100644 website/packages/ui/src/alert.tsx
delete mode 100644 website/packages/ui/src/animated-gradient-text.tsx
delete mode 100644 website/packages/ui/src/animated-list.tsx
delete mode 100644 website/packages/ui/src/animated-tooltip.tsx
delete mode 100644 website/packages/ui/src/avatar.tsx
delete mode 100644 website/packages/ui/src/background-lines.tsx
delete mode 100644 website/packages/ui/src/button.tsx
delete mode 100644 website/packages/ui/src/calendar.tsx
delete mode 100644 website/packages/ui/src/callout.tsx
delete mode 100644 website/packages/ui/src/card-hover-effect.tsx
delete mode 100644 website/packages/ui/src/card-skeleton.tsx
delete mode 100644 website/packages/ui/src/card.tsx
delete mode 100644 website/packages/ui/src/checkbox.tsx
delete mode 100644 website/packages/ui/src/colorful-text.tsx
delete mode 100644 website/packages/ui/src/command.tsx
delete mode 100644 website/packages/ui/src/container-scroll-animation.tsx
delete mode 100644 website/packages/ui/src/data-table.tsx
delete mode 100644 website/packages/ui/src/data/globe.json
delete mode 100644 website/packages/ui/src/dialog.tsx
delete mode 100644 website/packages/ui/src/dropdown-menu.tsx
delete mode 100644 website/packages/ui/src/following-pointer.tsx
delete mode 100644 website/packages/ui/src/form.tsx
delete mode 100644 website/packages/ui/src/glowing-effect.tsx
delete mode 100644 website/packages/ui/src/icons.tsx
delete mode 100644 website/packages/ui/src/index.ts
delete mode 100644 website/packages/ui/src/infinite-moving-cards.tsx
delete mode 100644 website/packages/ui/src/input.tsx
delete mode 100644 website/packages/ui/src/label.tsx
delete mode 100644 website/packages/ui/src/marquee.tsx
delete mode 100644 website/packages/ui/src/meteors.tsx
delete mode 100644 website/packages/ui/src/popover.tsx
delete mode 100644 website/packages/ui/src/scroll-area.tsx
delete mode 100644 website/packages/ui/src/select.tsx
delete mode 100644 website/packages/ui/src/sheet.tsx
delete mode 100644 website/packages/ui/src/skeleton.tsx
delete mode 100644 website/packages/ui/src/sparkles.tsx
delete mode 100644 website/packages/ui/src/switch.tsx
delete mode 100644 website/packages/ui/src/table.tsx
delete mode 100644 website/packages/ui/src/tabs.tsx
delete mode 100644 website/packages/ui/src/text-generate-effect.tsx
delete mode 100644 website/packages/ui/src/text-reveal.tsx
delete mode 100644 website/packages/ui/src/toast.tsx
delete mode 100644 website/packages/ui/src/toaster.tsx
delete mode 100644 website/packages/ui/src/typewriter-effect.tsx
delete mode 100644 website/packages/ui/src/use-toast.tsx
delete mode 100644 website/packages/ui/src/utils/cn.ts
delete mode 100644 website/packages/ui/src/wobble-card.tsx
delete mode 100644 website/packages/ui/tailwind.config.ts
delete mode 100644 website/packages/ui/tsconfig.json
create mode 100644 website/postcss.config.js
create mode 100644 website/public/svm-logo.svg
create mode 100644 website/public/vite.svg
delete mode 100644 website/saasfly-logo.svg
delete mode 100644 website/setupyourpay.png
create mode 100644 website/src/App.css
create mode 100644 website/src/App.tsx
create mode 100644 website/src/assets/react.svg
create mode 100644 website/src/components/Documentation.tsx
create mode 100644 website/src/components/Features.tsx
create mode 100644 website/src/components/Footer.tsx
create mode 100644 website/src/components/Hero.tsx
create mode 100644 website/src/components/Stats.tsx
create mode 100644 website/src/components/TechStack.tsx
create mode 100644 website/src/components/ui/Badge.tsx
create mode 100644 website/src/components/ui/Button.tsx
create mode 100644 website/src/index.css
create mode 100644 website/src/lib/utils.ts
create mode 100644 website/src/main.tsx
create mode 100644 website/src/vite-env.d.ts
delete mode 100644 website/tooling/eslint-config/base.js
delete mode 100644 website/tooling/eslint-config/nextjs.js
delete mode 100644 website/tooling/eslint-config/package.json
delete mode 100644 website/tooling/eslint-config/react.js
delete mode 100644 website/tooling/eslint-config/tsconfig.json
delete mode 100644 website/tooling/prettier-config/index.mjs
delete mode 100644 website/tooling/prettier-config/package.json
delete mode 100644 website/tooling/prettier-config/tsconfig.json
delete mode 100644 website/tooling/tailwind-config/.eslintignore
delete mode 100644 website/tooling/tailwind-config/index.ts
delete mode 100644 website/tooling/tailwind-config/package.json
delete mode 100644 website/tooling/tailwind-config/postcss.js
delete mode 100644 website/tooling/tailwind-config/tsconfig.json
delete mode 100644 website/tooling/typescript-config/base.json
delete mode 100644 website/tooling/typescript-config/package.json
create mode 100644 website/tsconfig.app.json
create mode 100644 website/tsconfig.json
create mode 100644 website/tsconfig.node.json
delete mode 100644 website/turbo.json
delete mode 100644 website/turbo/generators/config.ts
delete mode 100644 website/turbo/generators/templates/package.json.hbs
delete mode 100644 website/turbo/generators/templates/tsconfig.json.hbs
delete mode 100644 website/twillot.png
delete mode 100644 website/vercel.json
create mode 100644 website/vite.config.ts
diff --git a/netlify.toml b/netlify.toml
index b3e47f0..795d6e7 100644
--- a/netlify.toml
+++ b/netlify.toml
@@ -1,41 +1,8 @@
[build]
base = "website"
- command = "bun install && bun run build --filter=@saasfly/nextjs"
- publish = "apps/nextjs/.next"
+ command = "npm install && npm run build"
+ publish = "dist"
-# Environment variables should be set in Netlify dashboard, not committed to repo
-# This is for reference only - use actual secrets in Netlify environment settings
[build.environment]
- # Authentication secrets - SET THESE IN NETLIFY DASHBOARD
- # NEXTAUTH_SECRET = "your-secure-nextauth-secret-here"
- NEXTAUTH_URL = "https://svm-pay.netlify.app"
- NEXT_PUBLIC_APP_URL = "https://svm-pay.netlify.app"
-
- # OAuth secrets - SET THESE IN NETLIFY DASHBOARD
- # GITHUB_CLIENT_ID = "your-github-client-id"
- # GITHUB_CLIENT_SECRET = "your-github-client-secret"
-
- # Email service secrets - SET THESE IN NETLIFY DASHBOARD
- # RESEND_API_KEY = "your-resend-api-key"
- # RESEND_FROM = "your-sender-email"
-
- # Payment provider secrets - SET THESE IN NETLIFY DASHBOARD
- # STRIPE_API_KEY = "your-stripe-api-key"
- # STRIPE_WEBHOOK_SECRET = "your-stripe-webhook-secret"
-
- # Public configuration (safe to commit)
- NEXT_PUBLIC_STRIPE_STD_PRODUCT_ID = "prod_placeholder"
- NEXT_PUBLIC_STRIPE_STD_MONTHLY_PRICE_ID = "price_placeholder"
- NEXT_PUBLIC_STRIPE_PRO_PRODUCT_ID = "prod_placeholder"
- NEXT_PUBLIC_STRIPE_PRO_MONTHLY_PRICE_ID = "price_placeholder"
- NEXT_PUBLIC_STRIPE_PRO_YEARLY_PRICE_ID = "price_placeholder"
- NEXT_PUBLIC_STRIPE_BUSINESS_PRODUCT_ID = "prod_placeholder"
- NEXT_PUBLIC_STRIPE_BUSINESS_MONTHLY_PRICE_ID = "price_placeholder"
- NEXT_PUBLIC_STRIPE_BUSINESS_YEARLY_PRICE_ID = "price_placeholder"
- NEXT_PUBLIC_POSTHOG_KEY = ""
- NEXT_PUBLIC_POSTHOG_HOST = "https://app.posthog.com"
- ADMIN_EMAIL = "admin@example.com"
- IS_DEBUG = "false"
-
-[[plugins]]
- package = "@netlify/plugin-nextjs"
+ NODE_VERSION = "18"
+ NPM_VERSION = "9"
diff --git a/website/.env.example b/website/.env.example
deleted file mode 100644
index 1b8c359..0000000
--- a/website/.env.example
+++ /dev/null
@@ -1,45 +0,0 @@
-# -----------------------------------------------------------------------------
-# App
-# -----------------------------------------------------------------------------
-NEXT_PUBLIC_APP_URL='http://localhost:3000'
-# -----------------------------------------------------------------------------
-# Authentication (NextAuth.js)
-# openssl rand -base64 32
-# -----------------------------------------------------------------------------
-NEXTAUTH_URL='http://localhost:3000'
-NEXTAUTH_SECRET='1'
-
-GITHUB_CLIENT_ID='1'
-GITHUB_CLIENT_SECRET='1'
-
-# -----------------------------------------------------------------------------
-# Email (RESEND)
-# -----------------------------------------------------------------------------
-RESEND_API_KEY='1'
-RESEND_FROM='1'
-
-# -----------------------------------------------------------------------------
-# Subscriptions (Stripe)
-# -----------------------------------------------------------------------------
-# Stripe
-STRIPE_API_KEY="1"
-STRIPE_WEBHOOK_SECRET="1"
-NEXT_PUBLIC_STRIPE_STD_PRODUCT_ID="prod_"
-NEXT_PUBLIC_STRIPE_STD_MONTHLY_PRICE_ID="price_"
-
-NEXT_PUBLIC_STRIPE_PRO_PRODUCT_ID="prod_"
-NEXT_PUBLIC_STRIPE_PRO_MONTHLY_PRICE_ID="price_"
-NEXT_PUBLIC_STRIPE_PRO_YEARLY_PRICE_ID="price_"
-NEXT_PUBLIC_STRIPE_BUSINESS_PRODUCT_ID="prod_"
-NEXT_PUBLIC_STRIPE_BUSINESS_MONTHLY_PRICE_ID="price_"
-NEXT_PUBLIC_STRIPE_BUSINESS_YEARLY_PRICE_ID="price_"
-
-# posthog
-NEXT_PUBLIC_POSTHOG_KEY=" "
-NEXT_PUBLIC_POSTHOG_HOST=https://app.posthog.com
-
-# admin account
-ADMIN_EMAIL="admin@saasfly.io,root@saasfly.io"
-
-# next auth debug
-IS_DEBUG=false
\ No newline at end of file
diff --git a/website/.github/FUNDING.yml b/website/.github/FUNDING.yml
deleted file mode 100644
index 93e87a3..0000000
--- a/website/.github/FUNDING.yml
+++ /dev/null
@@ -1,2 +0,0 @@
-# These are supported funding model platforms
-open_collective: saasfly
diff --git a/website/.github/workflows/ci.yml b/website/.github/workflows/ci.yml
deleted file mode 100644
index f87fcb4..0000000
--- a/website/.github/workflows/ci.yml
+++ /dev/null
@@ -1,63 +0,0 @@
-name: CI
-
-on:
- pull_request:
- branches: [ "*" ]
- push:
- branches: [ "main" ]
- merge_group:
-
-# You can leverage Vercel Remote Caching with Turbo to speed up your builds
-# @link https://turborepo.org/docs/core-concepts/remote-caching#remote-caching-on-vercel-builds
-# env:
-# TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
-# TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
-
-jobs:
- build-lint:
- runs-on: ubuntu-latest
-
- services:
- postgres:
- image: postgres:16.1
- env:
- POSTGRES_USER: default
- POSTGRES_PASSWORD: default
- POSTGRES_DB: verceldb
- ports:
- - 5432:5432
- options: >-
- --health-cmd pg_isready
- --health-interval 10s
- --health-timeout 5s
- --health-retries 5
-
- steps:
- - name: Checkout repo
- uses: actions/checkout@v4
-
- - name: Copy env
- shell: bash
- run: cp .env.example .env.local
-
- - name: Setup bun
- uses: oven-sh/setup-bun@v1
-
- - name: Install lib
- run: bun i
-
- - name: Build
- run: bun run build
- env:
- # The hostname used to communicate with the PostgreSQL service container
- POSTGRES_HOST: postgres
- # The default PostgreSQL port
- POSTGRES_PORT: 5432
- POSTGRES_USER: default
- POSTGRES_PASSWORD: default
- POSTGRES_DB: verceldb
- POSTGRES_URL: postgres://default:default@localhost:5432/verceldb
-
-
- - name: lint and type-check
- run: bun run build lint format typecheck
\ No newline at end of file
diff --git a/website/.gitignore b/website/.gitignore
index 651934f..a547bf3 100644
--- a/website/.gitignore
+++ b/website/.gitignore
@@ -1,52 +1,24 @@
-# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
-
-# dependencies
-node_modules
-.pnp
-.pnp.js
-
-# testing
-coverage
-
-# next.js
-.next/
-out/
-next-env.d.ts
-
-# expo
-.expo/
-dist/
-expo-env.d.ts
-apps/expo/.gitignore
-
-# production
-build
-
-# misc
-.DS_Store
-*.pem
-
-# debug
+# Logs
+logs
+*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
-.pnpm-debug.log*
+pnpm-debug.log*
+lerna-debug.log*
-# local env files
-.env.local
-
-# vercel
-.vercel
-
-# typescript
-*.tsbuildinfo
-
-# turbo
-.turbo
-
-yarn.lock
-package-lock.json
-
-.idea/
-
-.env
+node_modules
+dist
+dist-ssr
+*.local
+
+# Editor directories and files
+.vscode/*
+!.vscode/extensions.json
+.idea
+.DS_Store
+*.suo
+*.ntvs*
+*.njsproj
+*.sln
+*.sw?
diff --git a/website/CODE_OF_CONDUCT.md b/website/CODE_OF_CONDUCT.md
deleted file mode 100644
index d0ea038..0000000
--- a/website/CODE_OF_CONDUCT.md
+++ /dev/null
@@ -1,128 +0,0 @@
-# Contributor Covenant Code of Conduct
-
-## Our Pledge
-
-We as members, contributors, and leaders pledge to make participation in our
-community a harassment-free experience for everyone, regardless of age, body
-size, visible or invisible disability, ethnicity, sex characteristics, gender
-identity and expression, level of experience, education, socio-economic status,
-nationality, personal appearance, race, religion, or sexual identity
-and orientation.
-
-We pledge to act and interact in ways that contribute to an open, welcoming,
-diverse, inclusive, and healthy community.
-
-## Our Standards
-
-Examples of behavior that contributes to a positive environment for our
-community include:
-
-* Demonstrating empathy and kindness toward other people
-* Being respectful of differing opinions, viewpoints, and experiences
-* Giving and gracefully accepting constructive feedback
-* Accepting responsibility and apologizing to those affected by our mistakes,
- and learning from the experience
-* Focusing on what is best not just for us as individuals, but for the
- overall community
-
-Examples of unacceptable behavior include:
-
-* The use of sexualized language or imagery, and sexual attention or
- advances of any kind
-* Trolling, insulting or derogatory comments, and personal or political attacks
-* Public or private harassment
-* Publishing others' private information, such as a physical or email
- address, without their explicit permission
-* Other conduct which could reasonably be considered inappropriate in a
- professional setting
-
-## Enforcement Responsibilities
-
-Community leaders are responsible for clarifying and enforcing our standards of
-acceptable behavior and will take appropriate and fair corrective action in
-response to any behavior that they deem inappropriate, threatening, offensive,
-or harmful.
-
-Community leaders have the right and responsibility to remove, edit, or reject
-comments, commits, code, wiki edits, issues, and other contributions that are
-not aligned to this Code of Conduct, and will communicate reasons for moderation
-decisions when appropriate.
-
-## Scope
-
-This Code of Conduct applies within all community spaces, and also applies when
-an individual is officially representing the community in public spaces.
-Examples of representing our community include using an official e-mail address,
-posting via an official social media account, or acting as an appointed
-representative at an online or offline event.
-
-## Enforcement
-
-Instances of abusive, harassing, or otherwise unacceptable behavior may be
-reported to the community leaders responsible for enforcement at
-contract@nextify.ltd.
-All complaints will be reviewed and investigated promptly and fairly.
-
-All community leaders are obligated to respect the privacy and security of the
-reporter of any incident.
-
-## Enforcement Guidelines
-
-Community leaders will follow these Community Impact Guidelines in determining
-the consequences for any action they deem in violation of this Code of Conduct:
-
-### 1. Correction
-
-**Community Impact**: Use of inappropriate language or other behavior deemed
-unprofessional or unwelcome in the community.
-
-**Consequence**: A private, written warning from community leaders, providing
-clarity around the nature of the violation and an explanation of why the
-behavior was inappropriate. A public apology may be requested.
-
-### 2. Warning
-
-**Community Impact**: A violation through a single incident or series
-of actions.
-
-**Consequence**: A warning with consequences for continued behavior. No
-interaction with the people involved, including unsolicited interaction with
-those enforcing the Code of Conduct, for a specified period of time. This
-includes avoiding interactions in community spaces as well as external channels
-like social media. Violating these terms may lead to a temporary or
-permanent ban.
-
-### 3. Temporary Ban
-
-**Community Impact**: A serious violation of community standards, including
-sustained inappropriate behavior.
-
-**Consequence**: A temporary ban from any sort of interaction or public
-communication with the community for a specified period of time. No public or
-private interaction with the people involved, including unsolicited interaction
-with those enforcing the Code of Conduct, is allowed during this period.
-Violating these terms may lead to a permanent ban.
-
-### 4. Permanent Ban
-
-**Community Impact**: Demonstrating a pattern of violation of community
-standards, including sustained inappropriate behavior, harassment of an
-individual, or aggression toward or disparagement of classes of individuals.
-
-**Consequence**: A permanent ban from any sort of public interaction within
-the community.
-
-## Attribution
-
-This Code of Conduct is adapted from the [Contributor Covenant][homepage],
-version 2.0, available at
-https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
-
-Community Impact Guidelines were inspired by [Mozilla's code of conduct
-enforcement ladder](https://github.com/mozilla/diversity).
-
-[homepage]: https://www.contributor-covenant.org
-
-For answers to common questions about this code of conduct, see the FAQ at
-https://www.contributor-covenant.org/faq. Translations are available at
-https://www.contributor-covenant.org/translations.
\ No newline at end of file
diff --git a/website/CONTRIBUTING.md b/website/CONTRIBUTING.md
deleted file mode 100644
index 7f490b5..0000000
--- a/website/CONTRIBUTING.md
+++ /dev/null
@@ -1,51 +0,0 @@
-## Can I create a pull request for saasfly?
-
-Yes or no, it depends on what you will try to do. Since I don't want to waste your time, be sure to **create an empty draft pull request or open an issue, so we can have a discussion first**. Especially for a large pull request or you don't know if it will be merged or not.
-
-Here are some references:
-
-### ✅ Usually accepted
-
-- Bug fix
-- Security fix
-- Adding notification providers
-- Adding new language keys
-
-### ⚠️ Discussion required
-
-- Large pull requests
-- New features
-
-### ❌ Won't be merged
-
-- Do not pass the auto-test(we dont have auto-test now)
-- Any breaking changes
-- Duplicated pull requests
-- Buggy
-- UI/UX is not close to saasfly
-- Modifications or deletions of existing logic without a valid reason.
-- Adding functions that is completely out of scope
-- Converting existing code into other programming languages
-- Unnecessarily large code changes that are hard to review and cause conflicts with other PRs.
-
-The above cases may not cover all possible situations.
-
-If your pull request does not meet my expectations, I will reject it, no matter how much time you spent on it. Therefore, it is essential to have a discussion beforehand.
-
-I will assign your pull request to a [milestone](https://github.com/saasfly/saasfly/milestones), if I plan to review and merge it.
-
-Also, please don't rush or ask for an ETA, because I have to understand the pull request, make sure it is no breaking changes and stick to my vision of this project, especially for large pull requests.
-
-### Recommended Pull Request Guideline
-
-Before deep into coding, discussion first is preferred. Creating an empty pull request for discussion would be recommended.
-
-1. Fork the project
-2. Clone your fork repo to local
-3. Create a new branch
-4. Create an empty commit: `git commit -m "" --allow-empty`
-5. Push to your fork repo
-6. Prepare a pull request: https://github.com/saasfly/saasfly/compare
-7. Write a proper description. You can mention @tianzx in it, so @tianzx will get the notification.
-8. Create your pull request as a Draft
-9. Wait for the discussion
\ No newline at end of file
diff --git a/website/LICENSE b/website/LICENSE
deleted file mode 100644
index 965c52b..0000000
--- a/website/LICENSE
+++ /dev/null
@@ -1,21 +0,0 @@
-MIT License
-
-Copyright (c) 2024 saasfly
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
diff --git a/website/README.md b/website/README.md
index a4ee324..2d82857 100644
--- a/website/README.md
+++ b/website/README.md
@@ -1,237 +1,88 @@
+# SVM-Pay Website
-
-
-
+The official website for SVM-Pay - Cross-Chain Payment Infrastructure.
-# Saasfly
-
+## Overview
-[![GitHub Actions Workflow Status][check-workflow-badge]][check-workflow-badge-link] [![GitHub License][github-license-badge]][github-license-badge-link] [![Discord][discord-badge]][discord-badge-link] [![Saasfly][made-by-nextify-badge]][made-by-nextify-badge-link]
-[](README_zh.md)
-[](README_de.md)
-[](README_vi.md)
-
-[](https://visitorbadge.io/status?path=https%3A%2F%2Fgithub.com%2Fsaasfly%2Fsaasfly)
+A modern, responsive website built with:
+- **React 19** - Latest React with concurrent features
+- **TypeScript** - Type-safe development
+- **Tailwind CSS** - Utility-first styling
+- **Framer Motion** - Smooth animations
+- **Vite** - Fast build tool and dev server
-An easy-to-use and enterprise-grade Next.js boilerplate.
+## Features
-You don't need to buy templates anymore; Saasfly provides a complete, open-source solution for building SaaS applications quickly and easily.
+- 🚀 **Performance optimized** - Fast loading, smooth animations
+- 📱 **Fully responsive** - Works on all devices and screen sizes
+- ♿ **Accessible** - WCAG compliant design
+- 🎨 **Modern design** - Clean, professional interface
+- 📊 **SEO optimized** - Proper meta tags and structured data
-> **[Nextify](https://nextify.ltd)** provides a complete Enterprise SaaS solution. Contact us at [contact@nextify.ltd](mailto:contact@nextify.ltd) if you're interested in discussing your project, or if you'd simply like to have a conversation with us, please feel free to reach out.
-
-> ❤️ We provide **free technical support and deployment services to non-profit organizations**.
->
-> 🙌 All profits obtained from our open source projects will be **entirely dedicated to supporting open source initiatives and charitable causes**.
-
-## ⚡ Live Demo
-
-Try it out for yourself!
-
-Demo Server (Location: Washington - USA):
-
-See more documentation at
-
-## 🌟 Star History
-
-[](https://star-history.com/#saasfly/saasfly&Timeline)
-
-## Sponsors
-
-
-
-## 🚀 Getting Started
-
-### 🖱 One Click Template
-
-[](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fsaasfly%2Fsaasfly&env=NEXT_PUBLIC_APP_URL,NEXTAUTH_URL,NEXTAUTH_SECRET,STRIPE_API_KEY,STRIPE_WEBHOOK_SECRET,POSTGRES_URL,GITHUB_CLIENT_ID,GITHUB_CLIENT_SECRET,RESEND_API_KEY,RESEND_FROM&install-command=bun%20install&build-command=bun%20run%20build&root-directory=apps%2Fnextjs)
-
-### 📋 Prerequisites
-
-Before you start, make sure you have the following installed:
-
-1. [Bun](https://bun.sh/) & [Node.js](https://nodejs.org/) & [Git](https://git-scm.com/)
-
- 1. Linux
-
- ```bash
- curl -sL https://gist.github.com/tianzx/874662fb204d32390bc2f2e9e4d2df0a/raw -o ~/downloaded_script.sh && chmod +x ~/downloaded_script.sh && source ~/downloaded_script.sh
- ```
-
- 2. MacOS
-
- ```bash
- /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- brew install git
- brew install oven-sh/bun/bun
- brew install nvm
- ```
-
-2. [PostgreSQL](https://www.postgresql.org/)
- 1. You can use Vercel Postgres or a local PostgreSQL server(add POSTGRES_URL env in .env.local)
- ```bash
- POSTGRES_URL = ''
- ```
-
-### Installation
-
-To get started with this boilerplate, we offer two options:
-
-1. Use the `bun create` command(🌟Strongly recommend🌟):
+## Quick Start
```bash
-bun create saasfly
-```
-
-2. Manually clone the repository:
-
-```bash
-git clone https://github.com/saasfly/saasfly.git
-cd saasfly
-bun install
-```
-
-### Setup
+# Install dependencies
+npm install
-Follow these steps to set up your project:
+# Start development server
+npm run dev
-1. Set up the environment variables:
+# Build for production
+npm run build
-```bash
-cp .env.example .env.local
-// (you must have a database prepared before running this command)
-bun db:push
+# Preview production build
+npm run preview
```
-2. Run the development server:
+## Project Structure
-```bash
-bun run dev:web
+```
+src/
+├── components/ # React components
+│ ├── ui/ # Reusable UI components
+│ ├── Hero.tsx # Landing page hero section
+│ ├── Features.tsx # Features showcase
+│ ├── Stats.tsx # Usage statistics
+│ ├── TechStack.tsx # Technical infrastructure
+│ ├── Documentation.tsx # Developer resources
+│ └── Footer.tsx # Site footer
+├── lib/ # Utility functions
+└── index.css # Global styles and Tailwind config
```
-3. Open [http://localhost:3000](http://localhost:3000) in your browser to see the result.
-
-4. (Optional alpha)`bun run tailwind-config-viewer` Open [http://localhost:3333](http://localhost:3333) in your browser to see your Tailwind CSS configuration
-
-
-## 🥺 Project Roadmap
-
-1. Admin Dashboard Page (in alpha !!!)
- 1. Only provide static page now and we plan to integrate with headless arch
- 2. You can provide your admin account and change **ADMIN_EMAIL="admin@saasfly.io,root@saasfly.io"** in .env.local and access host:port/admin/dashboard
- 3. Based on security concerns, we will not provide online demos for the time being.
-2. Consider integrating Payload CMS.
-
-## ⭐ Features
-
-### 🐭 Frameworks
-
-- **[Next.js](https://nextjs.org/)** - The React Framework for the Web (with **App Directory**)
-- **[NextAuth.js](https://next-auth.js.org/)** - Authentication for Next.js
-- **[Kysely](https://kysely.dev/)** - The type-safe SQL query builder for TypeScript
-- **[Prisma](https://www.prisma.io/)** - Next-generation ORM for Node.js and TypeScript, used as a schema management tool
-- **[React-email](https://react.email/)** - A React renderer for creating beautiful emails using React components
-
-### 🐮 Platforms
-
-- **[Vercel](https://vercel.com/)** – Deploy your Next.js app with ease
-- **[Stripe](https://stripe.com/)** – Payment processing for internet businesses
-- **[Resend](https://resend.com/)** – Email marketing platform for developers
-
-### 🐯 Enterprise Features
-
-- **[i18n](https://nextjs.org/docs/app/building-your-application/routing/internationalization)** - Support for internationalization
-- **[SEO](https://nextjs.org/docs/app/building-your-application/optimizing/metadata)** - Search engine optimization
-- **[MonoRepo](https://turbo.build/)** - Monorepo for better code management
-- **[T3 Env](https://env.t3.gg/)** - Manage your environment variables with ease
-
-### 🐰 Data Fetching
-
-- **[trpc](https://trpc.io/)** – End-to-end typesafe APIs made easy
-- **[tanstack/react-query](https://react-query.tanstack.com/)** – Hooks for fetching, caching and updating asynchronous data in React
-
-### 🐲 Global State Management
-
-- **[Zustand](https://zustand.surge.sh/)** – Small, fast and scalable state management for React
-
-### 🐒 UI
-
-- **[Tailwind CSS](https://tailwindcss.com/)** – Utility-first CSS framework for rapid UI development
-- **[Shadcn/ui](https://ui.shadcn.com/)** – Re-usable components built using Radix UI and Tailwind CSS
-- **[Framer Motion](https://framer.com/motion)** – Motion library for React to animate components with ease
-- **[Lucide](https://lucide.dev/)** – Beautifully simple, pixel-perfect icons
-- **[next/font](https://nextjs.org/docs/basic-features/font-optimization)** – Optimize custom fonts and remove external network requests for improved performance
-
-### 🐴 Code Quality
-
-- **[TypeScript](https://www.typescriptlang.org/)** – Static type checker for end-to-end type safety
-- **[Prettier](https://prettier.io/)** – Opinionated code formatter for consistent code style
-- **[ESLint](https://eslint.org/)** – Pluggable linter for Next.js and TypeScript
-- **[Husky](https://typicode.github.io/husky)** – Git hooks made easy
-
-### 🐑 Performance
-
-- **[Vercel Analytics](https://vercel.com/analytics)** – Real-time performance metrics for your Next.js app
-- **[bun.sh](https://bun.sh/)** – npm alternative for faster and more reliable package management
-
-### 🐘 Database
-
-- **[PostgreSQL](https://www.postgresql.org/)** – The world's most advanced open source database
-
-## 📦 Apps and Packages
-
-- `web`: The main Next.js application
-- `ui`: Shared UI components
-- `db`: Database schema and utilities
-- `auth`: Authentication utilities
-- `email`: Email templates and utilities
+## Development
-## 📜 License
+The website is designed to showcase SVM-Pay's cross-chain payment capabilities with:
-This project is licensed under the MIT License. For more information, see the [LICENSE](./LICENSE) file.
+1. **Hero Section** - Clear value proposition and quick start code
+2. **Statistics** - Real usage metrics and developer adoption
+3. **Features** - Comprehensive feature showcase
+4. **Tech Stack** - Supported networks, bridges, and tokens
+5. **Documentation** - Code examples and developer resources
+6. **Footer** - Links and contact information
-## 🙏 Credits
+## Deployment
-This project was inspired by shadcn's [Taxonomy](https://github.com/shadcn-ui/taxonomy) and t3-oss's [create-t3-turbo](https://github.com/t3-oss/create-t3-turbo).
+The website is automatically deployed to Netlify when changes are pushed to the main branch.
-## 👨💻 Contributors
+- **Production URL**: [svm-pay.com](https://svm-pay.com)
+- **Staging URL**: [svm-pay.netlify.app](https://svm-pay.netlify.app)
-
-
-
+## Contributing
-Made with [contrib.rocks](https://contrib.rocks).
+When making changes:
-
+1. Test locally with `npm run dev`
+2. Build and test with `npm run build && npm run preview`
+3. Ensure responsive design works on all screen sizes
+4. Verify accessibility with screen readers
+5. Check performance with Lighthouse
-[check-workflow-badge]: https://img.shields.io/github/actions/workflow/status/saasfly/saasfly/ci.yml?label=ci
-[github-license-badge]: https://img.shields.io/badge/License-MIT-green.svg
-[discord-badge]: https://img.shields.io/discord/1204690198382911488?color=7b8dcd&link=https%3A%2F%2Fsaasfly.io%2Fdiscord
-[made-by-nextify-badge]: https://img.shields.io/badge/made_by-nextify-blue?color=FF782B&link=https://nextify.ltd/
+## Performance
-[check-workflow-badge-link]: https://github.com/saasfly/saasfly/actions/workflows/check.yml
-[github-license-badge-link]: https://github.com/saasfly/saasfly/blob/main/LICENSE
-[discord-badge-link]: https://discord.gg/8SwSX43wnD
-[made-by-nextify-badge-link]: https://nextify.ltd
+The website is optimized for:
+- **Core Web Vitals** - LCP, FID, CLS scores
+- **Bundle size** - Minimal JavaScript payload
+- **Image optimization** - WebP format with fallbacks
+- **Caching** - Proper cache headers for static assets
diff --git a/website/README_de.md b/website/README_de.md
deleted file mode 100644
index 28c2955..0000000
--- a/website/README_de.md
+++ /dev/null
@@ -1,198 +0,0 @@
-Hier ist die überarbeitete Version der deutschen Übersetzung mit optimierter Grammatik und Rechtschreibung:
-
-
-
-
-
-# Saasfly
-
-[![GitHub Actions Workflow Status][check-workflow-badge]][check-workflow-badge-link] [![GitHub License][github-license-badge]][github-license-badge-link] [![Discord][discord-badge]][discord-badge-link] [![Saasfly][made-by-nextify-badge]][made-by-nextify-badge-link]
-[](README.md)
-
-Eine einfach zu verwendende und unternehmenstaugliche Next.js-Vorlage.
-
-Sie müssen keine Vorlagen mehr kaufen; Saasfly bietet eine vollständige Open-Source-Lösung zum schnellen und einfachen Erstellen von SaaS-Anwendungen.
-
-> **[Nextify](https://nextify.ltd)** bietet eine komplette Enterprise-SaaS-Lösung an. Kontaktieren Sie uns unter [contact@nextify.ltd](mailto:contact@nextify.ltd), wenn Sie Interesse an einer Besprechung Ihres Projekts haben oder wenn Sie einfach ein Gespräch mit uns führen möchten. Zögern Sie bitte nicht, uns zu kontaktieren.
-
-> ❤️ Wir bieten **kostenlose technische Unterstützung und Bereitstellungsdienste für gemeinnützige Organisationen** an.
->
-> 🙌 Alle Gewinne aus unseren Open-Source-Projekten werden **ausschließlich zur Unterstützung von Open-Source-Initiativen und wohltätigen Zwecken verwendet**.
-
-## ⚡ Live-Demo
-
-Probieren Sie es selbst aus!
-
-Demo-Server 1 (Standort: Washington, USA):
-
-Demo-Server 2 (Standort: Tokio, Japan):
-
-Weitere Dokumentation finden Sie unter .
-
-## 🌟 Stern-Verlauf
-
-[](https://star-history.com/#saasfly/saasfly&Timeline)
-
-## 🚀 Erste Schritte
-
-### 🖱 One-Click-Vorlage
-
-[](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fsaasfly%2Fsaasfly&env=NEXT_PUBLIC_APP_URL,NEXTAUTH_URL,NEXTAUTH_SECRET,STRIPE_API_KEY,STRIPE_WEBHOOK_SECRET,POSTGRES_URL,GITHUB_CLIENT_ID,GITHUB_CLIENT_SECRET,RESEND_API_KEY,RESEND_FROM&install-command=bun%20install&build-command=bun%20run%20build&root-directory=apps%2Fnextjs)
-
-### 📋 Voraussetzungen
-
-Stellen Sie vor dem Start sicher, dass Sie Folgendes installiert haben:
-
-1. [Bun](https://bun.sh/), [Node.js](https://nodejs.org/) und [Git](https://git-scm.com/)
-
- 1. Linux
-
- ```bash
- curl -sL https://gist.github.com/tianzx/874662fb204d32390bc2f2e9e4d2df0a/raw -o ~/downloaded_script.sh && chmod +x ~/downloaded_script.sh && source ~/downloaded_script.sh
- ```
-
- 2. macOS
-
- ```bash
- /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- brew install git
- brew install oven-sh/bun/bun
- brew install nvm
- ```
-
-2. [PostgreSQL](https://www.postgresql.org/)
- 1. Sie können entweder Vercel Postgres oder einen lokalen PostgreSQL-Server verwenden (fügen Sie die POSTGRES_URL-Umgebungsvariable in .env.local hinzu)
- ```bash
- POSTGRES_URL = ''
- ```
-
-### Installation
-
-Für den Einstieg mit dieser Vorlage bieten wir zwei Möglichkeiten an:
-
-1. Verwenden Sie den Befehl `bun create` (🌟dringend empfohlen🌟):
-
-```bash
-bun create saasfly
-```
-
-2. Klonen Sie das Repository manuell:
-
-```bash
-git clone https://github.com/saasfly/saasfly.git
-cd saasfly
-bun install
-```
-
-### Einrichtung
-
-Führen Sie die folgenden Schritte aus, um Ihr Projekt einzurichten:
-
-1. Richten Sie die Umgebungsvariablen ein:
-
-```bash
-cp .env.example .env.local
-// (Sie müssen eine Datenbank vorbereitet haben, bevor Sie diesen Befehl ausführen)
-bun db:push
-```
-
-2. Starten Sie den Entwicklungsserver:
-
-```bash
-bun run dev:web
-```
-
-5. Öffnen Sie [http://localhost:3000](http://localhost:3000) in Ihrem Browser, um das Ergebnis zu sehen.
-
-## 🥺 Projekt-Roadmap
-
-1. Admin-Dashboard-Seite (in Alpha!!!)
- 2. Derzeit ist nur eine statische Seite verfügbar, die Integration mit der Headless-Architektur ist geplant
- 3. Sie können Ihr Admin-Konto angeben, indem Sie **ADMIN_EMAIL="admin@saasfly.io,root@saasfly.io"** in .env.local ändern und auf host:port/admin/dashboard zugreifen
- 4. Aus Sicherheitsgründen werden wir vorerst keine Online-Demos bereitstellen.
-2. Mehrsprachige README-Dateien
-3. TODO
-
-## ⭐ Funktionen
-
-### 🐭 Frameworks
-
-- **[Next.js](https://nextjs.org/)** - Das React-Framework für das Web (mit **App Directory**)
-- **[NextAuth.js](https://next-auth.js.org/)** - Authentifizierung für Next.js
-- **[Kysely](https://kysely.dev/)** - Der typsichere SQL-Abfrageersteller für TypeScript
-- **[Prisma](https://www.prisma.io/)** - ORM der nächsten Generation für Node.js und TypeScript, verwendet als Schemaverwaltungstool
-- **[React-email](https://react.email/)** - Ein React-Renderer zum Erstellen schöner E-Mails mit React-Komponenten
-
-### 🐮 Plattformen
-
-- **[Vercel](https://vercel.com/)** – Stellen Sie Ihre Next.js-App ganz einfach bereit
-- **[Stripe](https://stripe.com/)** – Zahlungsabwicklung für Internetunternehmen
-- **[Resend](https://resend.com/)** – E-Mail-Marketing-Plattform für Entwickler
-
-### 🐯 Unternehmensfunktionen
-
-- **[i18n](https://nextjs.org/docs/app/building-your-application/routing/internationalization)** - Unterstützung für Internationalisierung
-- **[SEO](https://nextjs.org/docs/app/building-your-application/optimizing/metadata)** - Suchmaschinenoptimierung
-- **[MonoRepo](https://turbo.build/)** - Monorepo für eine bessere Code-Verwaltung
-- **[T3 Env](https://env.t3.gg/)** - Verwalten Sie Ihre Umgebungsvariablen mit Leichtigkeit
-
-### 🐰 Datenbeschaffung
-
-- **[trpc](https://trpc.io/)** – End-to-End typsichere APIs leicht gemacht
-- **[tanstack/react-query](https://react-query.tanstack.com/)** – Hooks zum Abrufen, Zwischenspeichern und Aktualisieren asynchroner Daten in React
-
-### 🐲 Globale Zustandsverwaltung
-
-- **[Zustand](https://zustand.surge.sh/)** – Kleine, schnelle und skalierbare Zustandsverwaltung für React
-
-### 🐒 UI
-
-- **[Tailwind CSS](https://tailwindcss.com/)** – Utility-First-CSS-Framework für eine schnelle UI-Entwicklung
-- **[Shadcn/ui](https://ui.shadcn.com/)** – Wiederverwendbare Komponenten, die mit Radix UI und Tailwind CSS erstellt wurden
-- **[Framer Motion](https://framer.com/motion)** – Motion-Bibliothek für React zur einfachen Animation von Komponenten
-- **[Lucide](https://lucide.dev/)** – Wunderschöne, einfache, pixelgenaue Symbole
-- **[next/font](https://nextjs.org/docs/basic-features/font-optimization)** – Optimieren Sie benutzerdefinierte Schriftarten und entfernen Sie externe Netzwerkanforderungen zur Leistungsverbesserung
-
-### 🐴 Code-Qualität
-
-- **[TypeScript](https://www.typescriptlang.org/)** – Statischer Typprüfer für durchgängige Typsicherheit
-- **[Prettier](https://prettier.io/)** – Opinionated Code Formatter für einen konsistenten Code-Stil
-- **[ESLint](https://eslint.org/)** – Pluggable Linter für Next.js und TypeScript
-- **[Husky](https://typicode.github.io/husky)** – Git-Hooks leicht gemacht
-
-### 🐑 Leistung
-
-- **[Vercel Analytics](https://vercel.com/analytics)** – Echtzeit-Leistungsmetriken für Ihre Next.js-App
-- **[bun.sh](https://bun.sh/)** – npm-Alternative für eine schnellere und zuverlässigere Paketverwaltung
-
-### 🐘 Datenbank
-
-- **[PostgreSQL](https://www.postgresql.org/)** – Die weltweit fortschrittlichste Open-Source-Datenbank
-
-## 📦 Apps und Pakete
-
-- `web`: Die Hauptanwendung von Next.js
-- `ui`: Gemeinsam genutzte UI-Komponenten
-- `db`: Datenbankschema und Utilities
-- `auth`: Authentifizierungs-Utilities
-- `email`: E-Mail-Vorlagen und Utilities
-
-## 📜 Lizenz
-
-Dieses Projekt ist unter der MIT-Lizenz lizenziert. Weitere Informationen finden Sie in der Datei [LICENSE](./LICENSE).
-
-## 🙏 Credits
-
-Dieses Projekt wurde von shadcns [Taxonomy](https://github.com/shadcn-ui/taxonomy) und t3-oss' [create-t3-turbo](https://github.com/t3-oss/create-t3-turbo) inspiriert.
-
-
-
-[check-workflow-badge]: https://img.shields.io/github/actions/workflow/status/saasfly/saasfly/ci.yml?label=ci
-[github-license-badge]: https://img.shields.io/badge/License-MIT-green.svg
-[discord-badge]: https://img.shields.io/discord/1204690198382911488?color=7b8dcd&link=https%3A%2F%2Fsaasfly.io%2Fdiscord
-[made-by-nextify-badge]: https://img.shields.io/badge/made_by-nextify-blue?color=FF782B&link=https://nextify.ltd/
-
-[check-workflow-badge-link]: https://github.com/saasfly/saasfly/actions/workflows/check.yml
-[github-license-badge-link]: https://github.com/saasfly/saasfly/blob/main/LICENSE
-[discord-badge-link]: https://discord.gg/8SwSX43wnD
-[made-by-nextify-badge-link]: https://nextify.ltd
\ No newline at end of file
diff --git a/website/README_vi.md b/website/README_vi.md
deleted file mode 100644
index 2979ded..0000000
--- a/website/README_vi.md
+++ /dev/null
@@ -1,196 +0,0 @@
-
-
-
-
-# Saasfly
-
-[![Trạng thái quy trình làm việc GitHub Actions][check-workflow-badge]][check-workflow-badge-link] [![Giấy phép GitHub][github-license-badge]][github-license-badge-link] [![Discord][discord-badge]][discord-badge-link] [![Saasfly][made-by-nextify-badge]][made-by-nextify-badge-link]
-[](README.md)
-
-Một boilerplate Next.js dễ sử dụng, cấp doanh nghiệp.
-
-Bạn không cần phải mua mẫu nữa; Saasfly cung cấp một giải pháp nguồn mở hoàn chỉnh để xây dựng các ứng dụng SaaS một cách nhanh chóng và dễ dàng.
-
-> **[Nextify](https://nextify.ltd)** cung cấp giải pháp SaaS doanh nghiệp toàn diện. Nếu bạn quan tâm đến việc thảo luận về dự án của mình hoặc chỉ muốn trò chuyện với chúng tôi, vui lòng liên hệ với chúng tôi tại [contact@nextify.ltd] (mailto:contact@nextify.ltd).
-
-> ❤️ Chúng tôi cung cấp **hỗ trợ kỹ thuật và triển khai miễn phí cho các tổ chức phi lợi nhuận**.
->
-> 🙌 Tất cả lợi nhuận thu được từ các dự án nguồn mở của chúng tôi sẽ được sử dụng hoàn toàn để hỗ trợ các chương trình và hoạt động từ thiện nguồn mở.
-
-## ⚡ Demo trực tuyến
-
-Tự mình thử nó!
-
-Máy chủ demo 1 (Địa điểm: Washington, Hoa Kỳ):
-
-Máy chủ demo 2 (Địa điểm: Tokyo, Nhật Bản):
-
-Để xem thêm tài liệu, hãy truy cập
-
-## 🌟 Lịch sử Star
-
-[](https://star-history.com/#saasfly/saasfly&Timeline)
-
-## 🚀 Bắt đầu
-
-### 🖱 Mẫu một lần nhấp
-
-[](https://vercel.com/new/clone?repository-url=https%3A%2F%2Fgithub.com%2Fsaasfly%2Fsaasfly&env=NEXT_PUBLIC_APP_URL,NEXTAUTH_URL,NEXTAUTH_SECRET,STRIPE_API_KEY,STRIPE_WEBHOOK_SECRET,POSTGRES_URL,GITHUB_CLIENT_ID,GITHUB_CLIENT_SECRET,RESEND_API_KEY,RESEND_FROM&install-command=bun%20install&build-command=bun%20run%20build&root-directory=apps%2Fnextjs)
-
-### 📋 Điều kiện tiên quyết
-
-Trước khi bắt đầu, hãy đảm bảo bạn đã cài đặt các thành phần sau:
-
-1. [Bun](https://bun.sh/) & [Node.js](https://nodejs.org/) & [Git](https://git-scm.com/)
-
- 1. Linux
-
- ```bash
- curl -sL https://gist.github.com/tianzx/874662fb204d32390bc2f2e9e4d2df0a/raw -o ~/downloaded_script.sh && chmod +x ~/downloaded_script.sh && source ~/downloaded_script.sh
- ```
-
- 2. MacOS
-
- ```bash
- /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
- brew install git
- brew install oven-sh/bun/bun
- brew install nvm
- ```
-
-2. [PostgreSQL](https://www.postgresql.org/)
- 1. Bạn có thể sử dụng Vercel Postgres hoặc máy chủ PostgreSQL cục bộ (thêm biến môi trường POSTGRES_URL trong .env.local)
- ```bash
- POSTGRES_URL = ''
- ```
-
-### Cài đặt
-
-Để bắt đầu với boilerplate này, chúng tôi cung cấp hai tùy chọn:
-
-1. Sử dụng lệnh `bun create` (🌟Khuyến nghị cao🌟):
-
-```bash
-bun create saasfly
-```
-
-2. Tự sao chép kho lưu trữ:
-
-```bash
-git clone https://github.com/saasfly/saasfly.git
-cd saasfly
-bun install
-```
-
-### Thiết lập
-
-Làm theo các bước sau để thiết lập dự án của bạn:
-
-1. Thiết lập các biến môi trường:
-
-```bash
-cp .env.example .env.local
-// (Bạn phải chuẩn bị một cơ sở dữ liệu trước khi chạy lệnh này)
-bun db:push
-```
-
-2. Chạy máy chủ phát triển:
-
-```bash
-bun run dev:web
-```
-
-5. Mở [http://localhost:3000](http://localhost:3000) trong trình duyệt để xem kết quả.
-
-## 🥺 Lộ trình dự án
-
-1. Trang tổng quan quản trị (vẫn đang trong giai đoạn alpha!!!)
- 2. Hiện tại chỉ cung cấp các trang tĩnh, chúng tôi có kế hoạch tích hợp với CMS kiến trúc headless
- 3. Bạn có thể cung cấp một tài khoản quản trị viên, thay đổi **ADMIN_EMAIL="admin@saasfly.io,root@saasfly.io"** trong .env.local, sau đó truy cập host:port/admin/dashboard
- 4. Vì lý do bảo mật, chúng tôi tạm thời không cung cấp demo trực tuyến.
-2. Nhiều ngôn ngữ READEME
-3. TODO
-
-## ⭐ Các tính năng
-
-### 🐭 Framework
-
-- **[Next.js](https://nextjs.org/)** - Framework web React (sử dụng **App Directory**)
-- **[NextAuth.js](https://next-auth.js.org/)** - Xác thực cho Next.js
-- **[Kysely](https://kysely.dev/)** - Trình xây dựng truy vấn SQL an toàn về kiểu cho TypeScript
-- **[Prisma](https://www.prisma.io/)** - ORM thế hệ tiếp theo cho Node.js và TypeScript, được sử dụng như một công cụ quản lý sơ đồ
-- **[React-email](https://react.email/)** - Một trình hiển thị React để tạo email đẹp bằng các thành phần React
-
-### 🐮 Nền tảng
-
-- **[Vercel](https://vercel.com/)** – Dễ dàng triển khai ứng dụng Next.js của bạn
-- **[Stripe](https://stripe.com/)** – Xử lý thanh toán cho các doanh nghiệp Internet
-- **[Resend](https://resend.com/)** – Nền tảng email marketing cho nhà phát triển
-
-### 🐯 Tính năng doanh nghiệp
-
-- **[i18n](https://nextjs.org/docs/app/building-your-application/routing/internationalization)** - Hỗ trợ quốc tế hóa
-- **[SEO](https://nextjs.org/docs/app/building-your-application/optimizing/metadata)** - Tối ưu hóa công cụ tìm kiếm
-- **[MonoRepo](https://turbo.build/)** - Monorepo để quản lý mã tốt hơn
-- **[T3 Env](https://env.t3.gg/)** - Dễ dàng quản lý biến môi trường của bạn
-
-### 🐰 Truy xuất dữ liệu
-
-- **[trpc](https://trpc.io/)** – Dễ dàng tạo API an toàn về kiểu từ đầu đến cuối
-- **[tanstack/react-query](https://react-query.tanstack.com/)** – Các hook để tìm nạp, lưu vào bộ nhớ đệm và cập nhật dữ liệu không đồng bộ trong React
-
-### 🐲 Quản lý trạng thái toàn cục
-
-- **[Zustand](https://zustand.surge.sh/)** – Quản lý trạng thái mạnh mẽ, nhỏ gọn và có thể mở rộng cho React
-
-### 🐒 UI
-
-- **[Tailwind CSS](https://tailwindcss.com/)** – Framework CSS tiện ích first cho phát triển UI nhanh
-- **[Shadcn/ui](https://ui.shadcn.com/)** – Các thành phần có thể tái sử dụng được xây dựng bằng Radix UI và Tailwind CSS
-- **[Framer Motion](https://framer.com/motion)** – Thư viện hoạt ảnh cho React để dễ dàng thêm hoạt ảnh cho các thành phần
-- **[Lucide](https://lucide.dev/)** – Các biểu tượng đẹp, đơn giản, hoàn hảo từng pixel
-- **[next/font](https://nextjs.org/docs/basic-features/font-optimization)** – Tối ưu hóa phông chữ tùy chỉnh và loại bỏ các yêu cầu mạng bên ngoài để cải thiện hiệu suất
-
-### 🐴 Chất lượng mã
-
-- **[TypeScript](https://www.typescriptlang.org/)** – Trình kiểm tra kiểu tĩnh an toàn kiểu từ đầu đến cuối
-- **[Prettier](https://prettier.io/)** – Trình định dạng mã cố chấp cho phong cách mã nhất quán
-- **[ESLint](https://eslint.org/)** – Trình kiểm tra có thể bổ sung cho Next.js và TypeScript
-- **[Husky](https://typicode.github.io/husky)** – Dễ dàng sử dụng các hook Git
-
-### 🐑 Hiệu suất
-
-- **[Vercel Analytics](https://vercel.com/analytics)** – Số liệu hiệu suất thời gian thực cho các ứng dụng Next.js
-- **[bun.sh](https://bun.sh/)** – Thay thế cho npm để quản lý gói nhanh hơn, đáng tin cậy hơn
-
-### 🐘 Cơ sở dữ liệu
-
-- **[PostgreSQL](https://www.postgresql.org/)** – Cơ sở dữ liệu nguồn mở tiên tiến nhất thế giới
-
-## 📦 Ứng dụng và gói
-
-- `web`: Ứng dụng Next.js chính
-- `ui`: Các thành phần UI chia sẻ
-- `db`: Sơ đồ cơ sở dữ liệu và các tiện ích
-- `auth`: Các tiện ích xác thực
-- `email`: Mẫu email và các tiện ích
-
-## 📜 Giấy phép
-
-Dự án này được cấp phép theo Giấy phép MIT. Để biết thêm thông tin, hãy xem tập tin [LICENSE](./LICENSE).
-
-## 🙏 Lời cảm ơn
-
-Dự án này lấy cảm hứng từ [Taxonomy](https://github.com/shadcn-ui/taxonomy) của shadcn và [create-t3-turbo](https://github.com/t3-oss/create-t3-turbo)của t3-oss.
-
-
-
-[check-workflow-badge]: https://img.shields.io/github/actions/workflow/status/saasfly/saasfly/ci.yml?label=ci
-[github-license-badge]: https://img.shields.io/badge/License-MIT-green.svg
-[discord-badge]: https://img.shields.io/discord/1204690198382911488?color=7b8dcd&link=https%3A%2F%2Fsaasfly.io%2Fdiscord
-[made-by-nextify-badge]: https://img.shields.io/badge/made_by-nextify-blue?color=FF782B&link=https://nextify.ltd/
-
-[check-workflow-badge-link]: https://github.com/saasfly/saasfly/actions/workflows/check.yml
-[github-license-badge-link]: https://github.com/saasfly/saasfly/blob/main/LICENSE
-[discord-badge-link]: https://discord.gg/8SwSX43wnD
-[made-by-nextify-badge-link]: https://nextify.ltd
\ No newline at end of file
diff --git a/website/README_zh.md b/website/README_zh.md
deleted file mode 100644
index c6e6bb8..0000000
--- a/website/README_zh.md
+++ /dev/null
@@ -1,225 +0,0 @@
-