diff --git a/bun.lockb b/bun.lockb index e9f2ca2..301c873 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 2e1115e..c156a05 100644 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "daisyui": "^4.12.13", "eslint": "^9.12.0", "eslint-config-prettier": "^9.1.0", - "eslint-plugin-svelte": "^2.44.1", + "eslint-plugin-svelte": "^2.45.1", "globals": "^15.11.0", "postcss": "^8.4.47", "prettier": "^3.3.3", diff --git a/src/lib/components/portfolio/countdown.svelte b/src/lib/components/portfolio/countdown.svelte index 3ad29b9..76f114e 100644 --- a/src/lib/components/portfolio/countdown.svelte +++ b/src/lib/components/portfolio/countdown.svelte @@ -1,21 +1,21 @@
diff --git a/src/lib/components/portfolio/textContent.svelte b/src/lib/components/portfolio/textContent.svelte index 4f714f1..643863e 100644 --- a/src/lib/components/portfolio/textContent.svelte +++ b/src/lib/components/portfolio/textContent.svelte @@ -1,6 +1,11 @@ @@ -9,11 +14,11 @@
{#if middle}

- + {@render children?.()}

{:else}

- + {@render children?.()}

{/if}
diff --git a/src/lib/components/portfolio/timeline.svelte b/src/lib/components/portfolio/timeline.svelte index 4e62076..e0f00df 100644 --- a/src/lib/components/portfolio/timeline.svelte +++ b/src/lib/components/portfolio/timeline.svelte @@ -12,7 +12,7 @@
Villanova College
Information Technology Officer
-
+
Help Desk Role: -
+
Key Experiences and Takeaways:
  • Became more comfortable and confident in an end-user facing role.
  • @@ -56,7 +56,7 @@
    St Pauls School
    Information Technology Officer
-
+
Help Desk Role:
  • @@ -71,7 +71,7 @@ Gained more experience in Azure ecosystem, SCCM deployment, and networking.
-
+
Key Experiences and Takeaways:
  • Working in a larger group to cover more ground
  • @@ -96,7 +96,7 @@
    St Pauls School
    System Administrator
    -
    +
    System Administrator Role:
    • @@ -112,7 +112,7 @@ importing new users into TASS and AD.
    -
    +
    Key Experiences and Takeaways:
    • There is always something to be improved upon if you look hard enough.
    • diff --git a/src/routes/+layout.svelte b/src/routes/+layout.svelte index 2a8d5fe..dae29e9 100644 --- a/src/routes/+layout.svelte +++ b/src/routes/+layout.svelte @@ -2,10 +2,15 @@ import "../app.css"; import Navbar from "$lib/components/navbar/navbar.svelte"; import Footer from "$lib/components/footer.svelte"; + interface Props { + children?: import('svelte').Snippet; + } + + let { children }: Props = $props(); - +{@render children?.()}