generated from redte-ch/redte.ch
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
4e33e01
commit c759e9a
Showing
29 changed files
with
3,949 additions
and
1,993 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"_variables": { | ||
"lastUpdateCheck": 1722427204423 | ||
}, | ||
"checkUpdates": { | ||
"enabled": false | ||
}, | ||
"devToolbar": { | ||
"enabled": true | ||
} | ||
} |
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 |
---|---|---|
@@ -1,4 +1,5 @@ | ||
.idea | ||
.yarn | ||
dist | ||
node_modules | ||
|
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
yarn run format | ||
yarn run lint | ||
yarn run check:astro | ||
yarn run check:eslint | ||
yarn run check:stylelint |
Binary file not shown.
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 |
---|---|---|
@@ -1,9 +1,15 @@ | ||
import { defineConfig } from 'astro/config' | ||
import tailwind from '@astrojs/tailwind' | ||
import betterImage from 'astro-better-image-service' | ||
import compress from '@playform/compress' | ||
|
||
/** @type {import('astro').AstroUserConfig} */ | ||
export default defineConfig({ | ||
site: 'https://maisonquiroga.art', | ||
compressHTML: true, | ||
integrations: [tailwind()] | ||
integrations: [ | ||
tailwind(), | ||
betterImage(), | ||
compress({ Image: false, SVG: false }) | ||
] | ||
}) |
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
File renamed without changes
File renamed without changes
File renamed without changes.
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,16 @@ | ||
p { | ||
@apply text-sm !important; | ||
@apply font-light !important; | ||
@apply text-gray-700 !important; | ||
} | ||
|
||
a { | ||
@apply underline !important; | ||
@apply lowercase !important; | ||
@apply font-normal !important; | ||
@apply text-secondary !important; | ||
} | ||
|
||
a:hover { | ||
@apply text-primary !important; | ||
} |
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 |
---|---|---|
@@ -1,8 +1,6 @@ | ||
@import '_base.css'; | ||
@import '_font.css'; | ||
@import '_blocks.css'; | ||
@import '_text.css'; | ||
|
||
@tailwind base; | ||
@tailwind components; | ||
@tailwind utilities; |
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,44 @@ | ||
--- | ||
const { title, items } = Astro.props | ||
--- | ||
|
||
<section class='Curriculum'> | ||
<h1 class='Curriculum-h1'>[{title}]</h1> | ||
|
||
{ | ||
items.map(({ year, text }) => ( | ||
<div class='Curriculum-col'> | ||
<p class='Curriculum-col-row-left'>{year}</p> | ||
<p class='Curriculum-col-row-right'>{text}</p> | ||
</div> | ||
)) | ||
} | ||
</section> | ||
|
||
<style> | ||
.Curriculum-h1 { | ||
@apply text-sm; | ||
@apply font-bold; | ||
@apply lowercase; | ||
@apply text-gray-900; | ||
} | ||
|
||
.Curriculum-col { | ||
@apply grid grid-cols-6 sm:grid-cols-8 md:grid-cols-10; | ||
} | ||
|
||
.Curriculum-col-row-left { | ||
@apply col-start-1; | ||
@apply font-normal; | ||
} | ||
|
||
.Curriculum-col-row-right { | ||
@apply col-span-5 col-start-2 sm:col-span-7 md:col-span-6; | ||
@apply font-light; | ||
} | ||
|
||
.Curriculum-col-row-left, | ||
.Curriculum-col-row-right { | ||
@apply mt-2; | ||
} | ||
</style> |
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
Oops, something went wrong.