diff --git a/src/components/AboutMe.astro b/src/components/AboutMe.astro index fc64d56..54033af 100644 --- a/src/components/AboutMe.astro +++ b/src/components/AboutMe.astro @@ -3,7 +3,7 @@ import Text from "@/components/Text"; ---
- + Meet Ave Aristov, Navigating the Cyberspace diff --git a/src/components/Cyberware/Cyberware.astro b/src/components/Cyberware/Cyberware.astro index ab4acc9..d52b04a 100644 --- a/src/components/Cyberware/Cyberware.astro +++ b/src/components/Cyberware/Cyberware.astro @@ -4,7 +4,7 @@ import TechnologyLinks from "./TechnologyLinks"; ---
- Cyberware Loadout + Cyberware Loadout Dive into the eclectic array of cybernetic tools that fuel their odyssey through the algorithmic maze of the digital underworld diff --git a/src/components/Experince/Experince.astro b/src/components/Experince/Experince.astro index 404e4dd..812344a 100644 --- a/src/components/Experince/Experince.astro +++ b/src/components/Experince/Experince.astro @@ -1,5 +1,6 @@ --- import Text from "@/components/Text"; +import { slugify } from "@/lib/utils"; const jobExperiences = [ { @@ -27,7 +28,11 @@ const jobExperiences = [ ]; --- -
+
Job Experience
(
- {job.title} + + {job.title} + {job.period} diff --git a/src/components/Main.astro b/src/components/Main.astro index ea2b4a9..70c8811 100644 --- a/src/components/Main.astro +++ b/src/components/Main.astro @@ -1,6 +1,7 @@ --- import { cn } from "@/lib/utils"; import type { TransitionAnimationPair } from "astro"; +import TableOfContents from "./TableOfContents"; const { class: additionalClasses } = Astro.props; @@ -30,12 +31,20 @@ const viewTransition = { id="main-content" class={cn( "container mx-auto px-4 py-4 sm:px-6 sm:py-6 md:px-8 md:py-8", + "flex flex-col lg:flex-row gap-8", additionalClasses )} transition:animate={viewTransition} transition:name="main" > - +
+ +
+