Merge version_5_1782063152315 into main #4
@@ -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 (
|
||||
<Routes>
|
||||
@@ -13,6 +14,7 @@ export default function App() {
|
||||
<Route path="/portfolio" element={<PortfolioPage />} />
|
||||
<Route path="/about" element={<AboutPage />} />
|
||||
<Route path="/products" element={<ProductsPage />} />
|
||||
<Route path="/contact" element={<ContactPage />} />
|
||||
</Route>
|
||||
</Routes>
|
||||
);
|
||||
|
||||
@@ -38,6 +38,8 @@ export default function Layout() {
|
||||
{ name: "Portfolio", href: "/portfolio" },
|
||||
{ name: "About", href: "/about" },
|
||||
{ name: "Products", href: "/products" },
|
||||
{ name: "Contact", href: "/contact" },
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
11
src/pages/ContactPage.tsx
Normal file
11
src/pages/ContactPage.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
import ScrollReveal from "@/components/ui/ScrollReveal";
|
||||
import TextAnimation from "@/components/ui/TextAnimation";
|
||||
import Button from "@/components/ui/Button";
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
<>
|
||||
<div data-webild-section="ContactCta"><section aria-label="Contact section" className="py-20"><div className="w-content-width mx-auto"><ScrollReveal variant="slide-up"><div className="flex flex-col items-center gap-8 md:gap-10 py-20 px-8 rounded card"><div className="flex flex-col items-center gap-2"><div className="px-3 py-1 mb-1 text-sm card rounded w-fit"><p>Connect With Us</p></div><TextAnimation text="Join our vibrant community of traders and builders. Access official resources at Orca.so, contribute to our open-source GitHub, or chat with us on social media." variant="slide-up" gradientText={true} tag="h2" className="md:max-w-8/10 text-5xl 2xl:text-6xl leading-[1.15] font-semibold text-center text-balance" /><div className="flex flex-wrap justify-center gap-3 mt-2 md:mt-3"><Button text="Visit Orca.so" href="https://orca.so" variant="primary" /><Button text="Explore GitHub" href="https://github.com/orca-so" variant="secondary" animationDelay={0.1} /></div></div></div></ScrollReveal></div></section></div>
|
||||
</>
|
||||
);
|
||||
}
|
||||
@@ -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' },
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user