diff --git a/next.config.mjs b/next.config.mjs index 0a7c9af..d125772 100644 --- a/next.config.mjs +++ b/next.config.mjs @@ -1,5 +1,6 @@ /** @type {import('next').NextConfig} */ const nextConfig = { + basePath: "/portfolio", }; export default nextConfig; diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 02087cc..0bbfdaf 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,26 +5,6 @@ import Sidebar from './components/sidebar'; import './globals.css'; export default function RootLayout({ children }: { children: React.ReactNode }) { - // left side, 3 verticle buttons - home, about, contact - // home is just: name, title, about me and pic, download link with resume - // contact is an email div - - // on exp page, top is skills, bottom is half exp, hald edu - // for skills part, list where each li is a one word header, then under that is - // sentence describing. - // Ex. - // AWS - // Extensive experience developing distributed, cloud-based microservices leveraging many - // of AWS's services - // NodeJS + Typescript - // AWS - // Leadership - // CICD?? - // React - - // on exp page, for exp section - // 2 divs side by side - if page is to short, stack them - // each element is a COMPONENT - resumeComponent return (