diff --git a/Dockerfile b/Dockerfile
index 8a2a98d..97263f1 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -31,4 +31,6 @@ RUN rm index.html
COPY --from=build /app/dist .
+RUN chown -R www-data:www-data *
+
EXPOSE 80
\ No newline at end of file
diff --git a/src/components/CustomCarousel.astro b/src/components/CustomCarousel/CustomCarousel.astro
similarity index 98%
rename from src/components/CustomCarousel.astro
rename to src/components/CustomCarousel/CustomCarousel.astro
index 2ccde3e..cd018e6 100644
--- a/src/components/CustomCarousel.astro
+++ b/src/components/CustomCarousel/CustomCarousel.astro
@@ -93,4 +93,4 @@ const limitByWidthClasses = "max-h-fit";
)}
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/scripts/components/custom-carousel.ts b/src/components/CustomCarousel/custom-carousel.ts
similarity index 100%
rename from src/scripts/components/custom-carousel.ts
rename to src/components/CustomCarousel/custom-carousel.ts
diff --git a/src/components/Timeline.astro b/src/components/Timeline/Timeline.astro
similarity index 96%
rename from src/components/Timeline.astro
rename to src/components/Timeline/Timeline.astro
index 3a182cf..bc10cba 100644
--- a/src/components/Timeline.astro
+++ b/src/components/Timeline/Timeline.astro
@@ -31,4 +31,4 @@ const timeline: timelineEntry[] = Astro.props.timeline || [];
-
\ No newline at end of file
+
\ No newline at end of file
diff --git a/src/scripts/components/timeline.ts b/src/components/Timeline/timeline.ts
similarity index 100%
rename from src/scripts/components/timeline.ts
rename to src/components/Timeline/timeline.ts
diff --git a/src/env.d.ts b/src/env.d.ts
index b00f7aa..47e19ac 100644
--- a/src/env.d.ts
+++ b/src/env.d.ts
@@ -6,11 +6,4 @@ interface ImportMetaEnv {
interface ImportMeta {
readonly env: ImportMetaEnv;
-}
-
-declare global {
- interface Window {
- LeaderLine: any;
- }
-}
-export {};
\ No newline at end of file
+}
\ No newline at end of file
diff --git a/src/layouts/BaseLayout.astro b/src/layouts/BaseLayout.astro
index cddc3e8..9fbaf56 100644
--- a/src/layouts/BaseLayout.astro
+++ b/src/layouts/BaseLayout.astro
@@ -23,7 +23,7 @@ const pageTitle = Astro.props.title ? `${Astro.props.title} - Corwin Perren` : "
-
+