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
69d1d23
commit 48ac2df
Showing
17 changed files
with
182 additions
and
113 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
const { text } = Astro.props | ||
--- | ||
|
||
<section class="Bio"> | ||
<p>{text}</p> | ||
</section> |
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,7 +1,29 @@ | ||
--- | ||
const redtech = 'https://redte.ch' | ||
const footerItems = [ | ||
{ | ||
text: 'redtech', | ||
href: 'https://redte.ch', | ||
} | ||
] | ||
--- | ||
|
||
<footer class="mt-8 ml-7"> | ||
<p><b>; </b><a href={redtech}>redtech</a><b> .</b></p> | ||
</footer> | ||
<footer class="Footer"> | ||
<p class="Footer-p"> | ||
<span class="Footer-p-span">; </span> | ||
{footerItems.map(({text, href}) => ( | ||
<a class="Footer-p-a" href={href}>{text}</a> | ||
))} | ||
|
||
<span class="Footer-p-span"> .</span> | ||
</p> | ||
</footer> | ||
|
||
<style> | ||
.Footer-p-span { | ||
@apply font-bold; | ||
} | ||
|
||
.Footer-p-a { | ||
@apply text-sm; | ||
} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
--- | ||
import Logo from './Logo.astro'; | ||
--- | ||
|
||
<header class="Header"> | ||
<Logo src="/images/logo.jpg" alt="Logo de Maison Quiroga"/> | ||
|
||
<h1 class="Header-h1"> | ||
RQV | ||
</h1> | ||
|
||
<h1 class="Header-h1-sm"> | ||
Roberto | ||
</h1> | ||
|
||
<h1 class="Header-h1-md"> | ||
Roberto Quiroga | ||
</h1> | ||
|
||
<h1 class="Header-h1-lg"> | ||
Roberto Quiroga Valdovinos | ||
</h1> | ||
|
||
<h2 class="Header-h2"> | ||
Peintre. | ||
</h2> | ||
|
||
<h2 class="Header-h2-sm"> | ||
Artiste peintre. | ||
</h2> | ||
|
||
<h2 class="Header-h2-md"> | ||
Artiste peintre. | ||
<span class="Header-h2--light">Valparaíso.</span> | ||
</h2> | ||
|
||
<h2 class="Header-h2-lg"> | ||
Artiste peintre. | ||
<span class="Header-h2--light">Valparaíso, Chili.</span> | ||
</h2> | ||
</header> | ||
|
||
<style> | ||
.Header-h1, .Header-h2 { | ||
@apply block sm:hidden; | ||
} | ||
|
||
.Header-h1-sm, .Header-h2-sm { | ||
@apply hidden sm:block md:hidden; | ||
} | ||
|
||
.Header-h1-md, .Header-h2-md { | ||
@apply hidden md:block lg:hidden; | ||
} | ||
|
||
.Header-h1-lg, .Header-h2-lg { | ||
@apply hidden lg:block; | ||
} | ||
|
||
.Header-h2--light { | ||
@apply text-gray-300; | ||
} | ||
</style> |
This file was deleted.
Oops, something went wrong.
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,7 +1,22 @@ | ||
--- | ||
const { class: className, src, ...rest } = Astro.props | ||
const { src, alt, ...rest } = Astro.props | ||
--- | ||
|
||
<div class={ className }> | ||
<img src={ src } { ...rest } class="w-20 h-20" alt="Logo"/> | ||
</div> | ||
<div class="Logo"> | ||
<img | ||
class="Logo-img" | ||
src={ src } | ||
alt={ alt } | ||
{ ...rest } | ||
/> | ||
</div> | ||
|
||
<style> | ||
.Logo { | ||
@apply -mb-20; | ||
} | ||
|
||
.Logo-img { | ||
@apply w-20 h-20; | ||
} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
--- | ||
const navItems = [ | ||
{ | ||
text: '/Œuvres choisies', | ||
href: 'https://www.instagram.com/maisonquiroga/' | ||
}, | ||
{ | ||
text: '/Contact', | ||
href: 'mailto:roberto@maisonquiroga.art' | ||
} | ||
] | ||
--- | ||
|
||
<nav class="Nav"> | ||
{navItems.map(({ text, href }) => ( | ||
<a class="Nav-a" href={href}>{text}</a> | ||
))} | ||
</nav> | ||
|
||
<style> | ||
.Nav-a { | ||
@apply pr-8; | ||
@apply text-lg; | ||
} | ||
</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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,46 +1,45 @@ | ||
h1 { | ||
@apply ml-16 !important; | ||
@apply pl-8 !important; | ||
@apply text-5xl !important; | ||
@apply font-black !important; | ||
@apply text-primary !important; | ||
} | ||
|
||
h2 { | ||
@apply ml-16 !important; | ||
@apply pl-8 !important; | ||
@apply text-4xl !important; | ||
@apply font-bold !important; | ||
@apply lowercase !important; | ||
@apply text-secondary !important; | ||
} | ||
|
||
h2 span { | ||
@apply text-gray-300 !important; | ||
h1, h2 { | ||
@apply ml-16 !important; | ||
@apply pl-8 !important; | ||
} | ||
|
||
h3 { | ||
@apply mt-8 mr-16 !important; | ||
@apply text-sm !important; | ||
@apply font-bold !important; | ||
@apply lowercase !important; | ||
@apply text-gray-900 !important; | ||
} | ||
|
||
h1, h2, h3 { | ||
@apply font-bold !important; | ||
} | ||
|
||
p { | ||
@apply mt-8 mr-16 !important; | ||
@apply text-sm !important; | ||
@apply font-light !important; | ||
@apply text-gray-700 !important; | ||
} | ||
|
||
a { | ||
@apply text-sm !important; | ||
@apply underline !important; | ||
@apply lowercase !important; | ||
@apply font-normal !important; | ||
@apply text-secondary !important; | ||
} | ||
|
||
p { | ||
@apply text-sm !important; | ||
} | ||
|
||
a:hover { | ||
@apply text-primary !important; | ||
} |
Oops, something went wrong.