Add Landing page and move Home to /stp route

New professional landing page at / with bio, about section, and nav links. Previous home page now lives at /stp.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-25 02:43:27 +00:00
parent d857cce5dc
commit 69e158b871
2 changed files with 63 additions and 2 deletions

View File

@@ -1,13 +1,18 @@
import { createRouter, createWebHistory } from "vue-router";
import Home from "@/views/home/Home.vue";
import Landing from "@/views/Landing.vue";
const router = createRouter({
history: createWebHistory(import.meta.env.BASE_URL),
routes: [
{
path: "/",
name: "landing",
component: Landing,
},
{
path: "/stp",
name: "home",
component: Home,
component: () => import("@/views/home/Home.vue"),
},
{
path: "/cv",