diff --git a/src/App.tsx b/src/App.tsx
index c26cae8..0dbbc84 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -3,12 +3,14 @@ import Layout from './components/Layout';
import HomePage from './pages/HomePage';
import ProjectsPage from "@/pages/ProjectsPage";
+import BarrioDeSalamancaPenthousePage from "@/pages/BarrioDeSalamancaPenthousePage";
export default function App() {
return (
}>
} />
} />
+ } />
);
diff --git a/src/components/Layout.tsx b/src/components/Layout.tsx
index 5fbbeee..3f5a8db 100644
--- a/src/components/Layout.tsx
+++ b/src/components/Layout.tsx
@@ -13,6 +13,8 @@ export default function Layout() {
{ name: "Metrics", href: "/#metrics" },
{ name: "Testimonials", href: "/#testimonials" },
{ name: "Contact", href: "/#contact" },
+ { name: "Barrio De Salamanca Penthouse", href: "/barrio-de-salamanca-penthouse" },
+
];
return (
diff --git a/src/pages/BarrioDeSalamancaPenthousePage.tsx b/src/pages/BarrioDeSalamancaPenthousePage.tsx
new file mode 100644
index 0000000..74abbeb
--- /dev/null
+++ b/src/pages/BarrioDeSalamancaPenthousePage.tsx
@@ -0,0 +1,25 @@
+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 AvatarGroup from "@/components/ui/AvatarGroup";
+import { cls } from "@/lib/utils";
+
+export default function BarrioDeSalamancaPenthousePage() {
+ return (
+ <>
+
+
+
+ >
+ );
+}
diff --git a/src/routes.ts b/src/routes.ts
index d2757df..c355d3c 100644
--- a/src/routes.ts
+++ b/src/routes.ts
@@ -7,4 +7,5 @@ export interface Route {
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
{ path: '/projects', label: 'Projects', pageFile: 'ProjectsPage' },
+ { path: '/barrio-de-salamanca-penthouse', label: 'Barrio De Salamanca Penthouse', pageFile: 'BarrioDeSalamancaPenthousePage' },
];