diff --git a/src/App.tsx b/src/App.tsx index 33d15f9..c26cae8 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -2,11 +2,13 @@ import { Routes, Route } from 'react-router-dom'; import Layout from './components/Layout'; import HomePage from './pages/HomePage'; +import ProjectsPage from "@/pages/ProjectsPage"; export default function App() { return ( }> } /> + } /> ); diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx index 3f1552a..6aed2d6 100644 --- a/src/components/Layout.tsx +++ b/src/components/Layout.tsx @@ -13,7 +13,9 @@ export default function Layout() { { name: "Hero", href: "#hero" }, { name: "Features", href: "#features" }, { name: "Metrics", href: "#metrics" }, - { name: "Testimonials", href: "#testimonials" } + { name: "Testimonials", href: "#testimonials" }, + { name: "Projects", href: "/projects" }, + ]; return ( diff --git a/src/pages/ProjectsPage.tsx b/src/pages/ProjectsPage.tsx new file mode 100644 index 0000000..6624e93 --- /dev/null +++ b/src/pages/ProjectsPage.tsx @@ -0,0 +1,18 @@ +import Button from "@/components/ui/Button"; +import HeroBackgroundSlot from "@/components/ui/HeroBackgroundSlot"; +import TextAnimation from "@/components/ui/TextAnimation"; +import ImageOrVideo from "@/components/ui/ImageOrVideo"; +import ScrollReveal from "@/components/ui/ScrollReveal"; +import GridOrCarousel from "@/components/ui/GridOrCarousel"; + +export default function ProjectsPage() { + return ( + <> +

Selected Works

+

Portfolio

Barrio de Salamanca Penthouse

A sunlit sanctuary blending classic moldings with contemporary minimalism.

+

Chamberí Townhouse

Restoring historical elegance while introducing fluid, modern living spaces.

+

Retiro Park Loft

An open-concept haven featuring raw textures and panoramic park views.

+

Justicia Studio

Maximizing natural light and bespoke joinery in a compact, elegant footprint.

+ + ); +} diff --git a/src/routes.ts b/src/routes.ts index 362ecb5..d2757df 100644 --- a/src/routes.ts +++ b/src/routes.ts @@ -6,4 +6,5 @@ export interface Route { export const routes: Route[] = [ { path: '/', label: 'Home', pageFile: 'HomePage' }, + { path: '/projects', label: 'Projects', pageFile: 'ProjectsPage' }, ];