diff --git a/src/App.tsx b/src/App.tsx index 6921b93..9466e42 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -5,6 +5,7 @@ import HomePage from './pages/HomePage'; import PortfolioPage from "@/pages/PortfolioPage"; import AboutPage from "@/pages/AboutPage"; import ProductsPage from "@/pages/ProductsPage"; +import ContactPage from "@/pages/ContactPage"; export default function App() { return ( @@ -13,6 +14,7 @@ export default function App() { } /> } /> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 23969f9..35554b5 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -38,6 +38,8 @@ export default function Layout() { { name: "Portfolio", href: "/portfolio" }, { name: "About", href: "/about" }, { name: "Products", href: "/products" }, + { name: "Contact", href: "/contact" }, + diff --git a/src/pages/ContactPage.tsx b/src/pages/ContactPage.tsx new file mode 100644 index 0000000..8e960bc --- /dev/null +++ b/src/pages/ContactPage.tsx @@ -0,0 +1,95 @@ +import { routes } from "@/routes"; +import NavbarCentered from "@/components/ui/NavbarCentered"; +import HeroBillboard from "@/components/sections/hero/HeroBillboard"; +import FeaturesIconCards from "@/components/sections/features/FeaturesIconCards"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; +import FooterSimple from "@/components/sections/footer/FooterSimple"; +import GridLinesBackground from "@/components/ui/GridLinesBackground"; + +export default function ContactPage() { + return ( +
+ + +
+ ({ name: r.label, href: r.path }))} + ctaButton={{ text: "Launch App", href: "https://orca.so" }} + /> + +
+ + + + + +
+ + +
+
+ ); +} \ No newline at end of file diff --git a/src/routes.ts b/src/routes.ts index 75c734a..11b70e7 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -9,4 +9,5 @@ export const routes: Route[] = [ { path: '/portfolio', label: 'Portfolio', pageFile: 'PortfolioPage' }, { path: '/about', label: 'About', pageFile: 'AboutPage' }, { path: '/products', label: 'Products', pageFile: 'ProductsPage' }, + { path: '/contact', label: 'Contact', pageFile: 'ContactPage' }, ];