diff --git a/src/App.tsx b/src/App.tsx
index 8591d72..6921b93 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -4,6 +4,7 @@ import HomePage from './pages/HomePage';
import PortfolioPage from "@/pages/PortfolioPage";
import AboutPage from "@/pages/AboutPage";
+import ProductsPage from "@/pages/ProductsPage";
export default function App() {
return (
@@ -11,6 +12,7 @@ export default function App() {
} />
} />
} />
+ } />
);
diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 8876bfe..23969f9 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -37,6 +37,8 @@ export default function Layout() {
},
{ name: "Portfolio", href: "/portfolio" },
{ name: "About", href: "/about" },
+ { name: "Products", href: "/products" },
+
];
diff --git a/src/pages/ProductsPage.tsx b/src/pages/ProductsPage.tsx
new file mode 100644
index 0000000..5866f46
--- /dev/null
+++ b/src/pages/ProductsPage.tsx
@@ -0,0 +1,49 @@
+import Button from "@/components/ui/Button";
+import TextAnimation from "@/components/ui/TextAnimation";
+import ImageOrVideo from "@/components/ui/ImageOrVideo";
+import GridOrCarousel from "@/components/ui/GridOrCarousel";
+import ScrollReveal from "@/components/ui/ScrollReveal";
+import FeaturesAlternatingSplit from "@/components/sections/features/FeaturesAlternatingSplit";
+import { cls } from "@/lib/utils";
+import { ArrowUpRight, Loader2 } from "lucide-react";
+import { useButtonClick } from "@/hooks/useButtonClick";
+import useBlogPosts from "@/hooks/useBlogPosts";
+import { Check } from "lucide-react";
+
+export default function ProductsPage() {
+ return (
+ <>
+
Lightning-Fast Trading
Swap tokens with minimal slippage and deep liquidity across the Solana ecosystem.
+
Concentrated Liquidity
Create custom pools and maximize capital efficiency to earn higher trading fees.
+
Portfolio Management
Track your assets, monitor yields, and manage your liquidity positions in real-time.
+
Yield Staking
Stake your tokens securely to earn passive rewards and participate in protocol governance.
+
Developer Docs
Integrate with Orca's smart contracts using our comprehensive SDKs and API guides.
+
+ Track your DeFi performance.
Monitor token balances, liquidity positions, and earned yields in one unified view.
+
Trade with lightning speed.
Execute trades instantly on Solana with minimal slippage and efficient routing.
+
Maximize capital efficiency.
Deploy concentrated liquidity pools to earn trading fees and optimize yields.
+
Put your tokens to work.
Stake your assets to secure the network and earn continuous rewards.
+
Integrate with our contracts.
Access comprehensive guides, API references, and SDKs to build DeFi apps.
+
+
+ >
+ );
+}
diff --git a/src/routes.ts b/src/routes.ts
index f2db14b..75c734a 100644
--- a/src/routes.ts
+++ b/src/routes.ts
@@ -8,4 +8,5 @@ export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/portfolio', label: 'Portfolio', pageFile: 'PortfolioPage' },
{ path: '/about', label: 'About', pageFile: 'AboutPage' },
+ { path: '/products', label: 'Products', pageFile: 'ProductsPage' },
];