website-content-updates #7
@@ -31,4 +31,6 @@ RUN rm index.html
|
|||||||
|
|
||||||
COPY --from=build /app/dist .
|
COPY --from=build /app/dist .
|
||||||
|
|
||||||
|
RUN chown -R www-data:www-data *
|
||||||
|
|
||||||
EXPOSE 80
|
EXPOSE 80
|
||||||
@@ -93,4 +93,4 @@ const limitByWidthClasses = "max-h-fit";
|
|||||||
)}
|
)}
|
||||||
</custom-carousel>
|
</custom-carousel>
|
||||||
|
|
||||||
<script src="@scripts/components/custom-carousel.ts"/>
|
<script src="./custom-carousel.ts"/>
|
||||||
@@ -31,4 +31,4 @@ const timeline: timelineEntry[] = Astro.props.timeline || [];
|
|||||||
</div>
|
</div>
|
||||||
</custom-timeline>
|
</custom-timeline>
|
||||||
|
|
||||||
<script src="@scripts/components/timeline.ts"/>
|
<script src="./timeline.ts"/>
|
||||||
9
src/env.d.ts
vendored
9
src/env.d.ts
vendored
@@ -6,11 +6,4 @@ interface ImportMetaEnv {
|
|||||||
|
|
||||||
interface ImportMeta {
|
interface ImportMeta {
|
||||||
readonly env: ImportMetaEnv;
|
readonly env: ImportMetaEnv;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare global {
|
|
||||||
interface Window {
|
|
||||||
LeaderLine: any;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
export {};
|
|
||||||
@@ -23,7 +23,7 @@ const pageTitle = Astro.props.title ? `${Astro.props.title} - Corwin Perren` : "
|
|||||||
<slot/>
|
<slot/>
|
||||||
</main>
|
</main>
|
||||||
<Footer/>
|
<Footer/>
|
||||||
<script src="/src/scripts/main.js"></script>
|
<script src="../scripts/main.ts"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
import BaseLayout from "@layouts/BaseLayout.astro";
|
import BaseLayout from "@layouts/BaseLayout.astro";
|
||||||
import Carousel from "@components/CustomCarousel.astro";
|
import Carousel from "@components/CustomCarousel/CustomCarousel.astro";
|
||||||
import Timeline from "@components/Timeline.astro";
|
import Timeline from "@components/Timeline/Timeline.astro";
|
||||||
import Table from "@components/Table.astro";
|
import Table from "@components/Table.astro";
|
||||||
|
|
||||||
import type {carouselGroup} from "@interfaces/image-carousel.ts";
|
import type {carouselGroup} from "@interfaces/image-carousel.ts";
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
import ExperienceLayout from '@layouts/ExperienceLayout.astro';
|
import ExperienceLayout from '@layouts/ExperienceLayout.astro';
|
||||||
import Timeline from '@components/Timeline.astro';
|
import Timeline from '@components/Timeline/Timeline.astro';
|
||||||
import Carousel from "@components/CustomCarousel.astro";
|
import Carousel from "@components/CustomCarousel/CustomCarousel.astro";
|
||||||
|
|
||||||
import spring_2019_interns from "@assets/experience/spacex/avionics-test-engineering-internship/spring-2019-interns.jpg";
|
import spring_2019_interns from "@assets/experience/spacex/avionics-test-engineering-internship/spring-2019-interns.jpg";
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
import ExperienceLayout from '@layouts/ExperienceLayout.astro';
|
import ExperienceLayout from '@layouts/ExperienceLayout.astro';
|
||||||
import Timeline from '@components/Timeline.astro';
|
import Timeline from '@components/Timeline/Timeline.astro';
|
||||||
import Carousel from "@components/CustomCarousel.astro";
|
import Carousel from "@components/CustomCarousel/CustomCarousel.astro";
|
||||||
|
|
||||||
import starlink_headquarters_selfie
|
import starlink_headquarters_selfie
|
||||||
from "@assets/experience/spacex/hardware-test-engineer-i-ii/starlink-headquarters-selfie.jpg";
|
from "@assets/experience/spacex/hardware-test-engineer-i-ii/starlink-headquarters-selfie.jpg";
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
import HobbyLayout from "@layouts/HobbyLayout.astro";
|
import HobbyLayout from "@layouts/HobbyLayout.astro";
|
||||||
import Carousel from "@components/CustomCarousel.astro";
|
import Carousel from "@components/CustomCarousel/CustomCarousel.astro";
|
||||||
|
|
||||||
import type {carouselGroup} from "@interfaces/image-carousel.ts";
|
import type {carouselGroup} from "@interfaces/image-carousel.ts";
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
import HobbyLayout from "@layouts/HobbyLayout.astro";
|
import HobbyLayout from "@layouts/HobbyLayout.astro";
|
||||||
import Carousel from "@components/CustomCarousel.astro";
|
import Carousel from "@components/CustomCarousel/CustomCarousel.astro";
|
||||||
|
|
||||||
import type {carouselGroup} from "@interfaces/image-carousel.ts";
|
import type {carouselGroup} from "@interfaces/image-carousel.ts";
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
import HobbyLayout from "@layouts/HobbyLayout.astro";
|
import HobbyLayout from "@layouts/HobbyLayout.astro";
|
||||||
import Carousel from "@components/CustomCarousel.astro";
|
import Carousel from "@components/CustomCarousel/CustomCarousel.astro";
|
||||||
|
|
||||||
import type {carouselGroup} from "@interfaces/image-carousel.ts";
|
import type {carouselGroup} from "@interfaces/image-carousel.ts";
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
import HobbyLayout from "@layouts/HobbyLayout.astro";
|
import HobbyLayout from "@layouts/HobbyLayout.astro";
|
||||||
import Carousel from "@components/CustomCarousel.astro";
|
import Carousel from "@components/CustomCarousel/CustomCarousel.astro";
|
||||||
|
|
||||||
import type {carouselGroup} from "@interfaces/image-carousel.ts";
|
import type {carouselGroup} from "@interfaces/image-carousel.ts";
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
import HobbyLayout from "@layouts/HobbyLayout.astro";
|
import HobbyLayout from "@layouts/HobbyLayout.astro";
|
||||||
import Carousel from "@components/CustomCarousel.astro";
|
import Carousel from "@components/CustomCarousel/CustomCarousel.astro";
|
||||||
|
|
||||||
import type {carouselGroup} from "@interfaces/image-carousel.ts";
|
import type {carouselGroup} from "@interfaces/image-carousel.ts";
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
---
|
---
|
||||||
import BaseLayout from '../layouts/BaseLayout.astro';
|
import BaseLayout from '../layouts/BaseLayout.astro';
|
||||||
import Carousel from "@components/CustomCarousel.astro";
|
import Carousel from "@components/CustomCarousel/CustomCarousel.astro";
|
||||||
|
|
||||||
import type {carouselGroup} from "@interfaces/image-carousel.ts";
|
import type {carouselGroup} from "@interfaces/image-carousel.ts";
|
||||||
|
|
||||||
|
|||||||
1
src/scripts/main.ts
Normal file
1
src/scripts/main.ts
Normal file
@@ -0,0 +1 @@
|
|||||||
|
import "flowbite";
|
||||||
@@ -6,7 +6,6 @@
|
|||||||
"@data/*": ["./src/data/*"],
|
"@data/*": ["./src/data/*"],
|
||||||
"@interfaces/*": ["./src/interfaces/*"],
|
"@interfaces/*": ["./src/interfaces/*"],
|
||||||
"@layouts/*": ["./src/layouts/*"],
|
"@layouts/*": ["./src/layouts/*"],
|
||||||
"@scripts/*": ["./src/scripts/*"],
|
|
||||||
"@styles/*": ["./src/styles/*"]
|
"@styles/*": ["./src/styles/*"]
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user