-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
87 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,9 +14,9 @@ FROM base AS build | |
COPY package.json yarn.lock ./ | ||
RUN yarn install --frozen-lockfile | ||
|
||
# override sharp 0.32.6 with 0.33.3 | ||
# override sharp 0.32.6 with 0.33.3, fails without this | ||
RUN yarn remove sharp | ||
RUN yarn add --arch=arm64 --platform=linux --libc=musl --ignore-engines [email protected].3 | ||
RUN yarn add --arch=arm64 --platform=linux --libc=musl --ignore-engines [email protected].4 | ||
|
||
COPY . . | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
--- | ||
import FullWidth from '@/layouts/FullWidth.astro'; | ||
import Prose from '@/components/Prose.astro'; | ||
import type { BaseProps } from '@/layouts/Base.astro'; | ||
export interface Props extends BaseProps {} | ||
const props = Astro.props; | ||
--- | ||
|
||
<FullWidth {...props}> | ||
<article class="px-4 lg:px-0"> | ||
<figure class="w-full max-w-5xl md:mx-auto"> | ||
<slot name="hero-image" /> | ||
</figure> | ||
<Prose> | ||
<section class="w-full max-w-4xl md:mx-auto py-4 lg:py-8"> | ||
<slot name="hero-text" /> | ||
<slot name="content" /> | ||
</section> | ||
</Prose> | ||
<section class="w-full max-w-5xl md:mx-auto"> | ||
<slot name="more-posts" /> | ||
</section> | ||
</article> | ||
</FullWidth> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,7 +30,7 @@ | |
} */ | ||
|
||
.prose { | ||
@apply outline outline-blue-500; | ||
/* @apply outline outline-blue-500; */ | ||
} | ||
|
||
/* | ||
|