-
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
0 parents
commit a683176
Showing
277 changed files
with
96,762 additions
and
0 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,3 @@ | ||
{ | ||
"extends": ["github>area44/renovate-config"] | ||
} |
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,33 @@ | ||
name: autofix.ci | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: ['main'] | ||
permissions: | ||
contents: read | ||
|
||
jobs: | ||
autofix: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install pnpm | ||
uses: pnpm/action-setup@v2 | ||
|
||
- name: Setup Node | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version-file: .nvmrc | ||
cache: pnpm | ||
cache-dependency-path: pnpm-lock.yaml | ||
|
||
- name: Install dependencies | ||
run: pnpm install --no-frozen-lockfile | ||
|
||
- name: Format with Prettier | ||
run: pnpm exec prettier -w . "!.github" | ||
|
||
- name: Run autofix.ci | ||
uses: autofix-ci/[email protected] |
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,23 @@ | ||
# build output | ||
dist/ | ||
.output/ | ||
originals/ | ||
desktop.ini | ||
ayrtonsenna/ | ||
|
||
# dependencies | ||
node_modules/ | ||
|
||
# logs | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
|
||
|
||
# environment variables | ||
.env | ||
.env.production | ||
|
||
# macOS-specific files | ||
.DS_Store |
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,21 @@ | ||
# build output | ||
dist/ | ||
.output/ | ||
originals/ | ||
|
||
# dependencies | ||
node_modules/ | ||
|
||
# logs | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
|
||
|
||
# environment variables | ||
.env | ||
.env.production | ||
|
||
# macOS-specific files | ||
.DS_Store |
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,22 @@ | ||
# build output | ||
dist/ | ||
.output/ | ||
originals/ | ||
desktop.ini | ||
|
||
# dependencies | ||
node_modules/ | ||
|
||
# logs | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
|
||
|
||
# environment variables | ||
.env | ||
.env.production | ||
|
||
# macOS-specific files | ||
.DS_Store |
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,23 @@ | ||
# build output | ||
dist/ | ||
.output/ | ||
originals/ | ||
desktop.ini | ||
ayrtonsenna/ | ||
|
||
# dependencies | ||
node_modules/ | ||
|
||
# logs | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
pnpm-debug.log* | ||
|
||
|
||
# environment variables | ||
.env | ||
.env.production | ||
|
||
# macOS-specific files | ||
.DS_Store |
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,38 @@ | ||
--- | ||
import '@/styles/main.css' | ||
interface Props { | ||
title?: string | undefined | ||
description?: string | undefined | ||
author?: string | undefined | ||
og: string | ||
} | ||
const { title, description, author, og } = Astro.props | ||
--- | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="robots" content="index, follow" /> | ||
<meta | ||
name="googlebot" | ||
content="index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1" | ||
/> | ||
<meta name="viewport" content="width=device-width,initial-scale=1" /> | ||
<meta name="generator" content={Astro.generator} /> | ||
<link rel="shortcut icon" type="image/png" href="./favicon.svg" /> | ||
<title>{title}</title> | ||
<meta name="title" content={title} /> | ||
<meta name="description" content={description} /> | ||
<meta name="author" content={author} /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content={Astro.url} /> | ||
<meta property="og:title" content={title} /> | ||
<meta property="og:description" content={description} /> | ||
<meta property="og:image" content={new URL(og, Astro.url)} /> | ||
<meta name="twitter:url" content={Astro.url} /> | ||
<meta name="twitter:title" content={title} /> | ||
<meta name="twitter:description" content={description} /> | ||
<meta name="twitter:image" content={new URL(og, Astro.url)} /> | ||
<meta name="twitter:card" content="./0_ayrtonsenna_0.jpg" /> | ||
</head> |
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,38 @@ | ||
--- | ||
import '@/styles/main.css' | ||
interface Props { | ||
title?: string | undefined | ||
description?: string | undefined | ||
author?: string | undefined | ||
og: string | ||
} | ||
const { title, description, author, og } = Astro.props | ||
--- | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="robots" content="index, follow" /> | ||
<meta | ||
name="googlebot" | ||
content="index, follow, max-video-preview:-1, max-image-preview:large, max-snippet:-1" | ||
/> | ||
<meta name="viewport" content="width=device-width,initial-scale=1" /> | ||
<meta name="generator" content={Astro.generator} /> | ||
<link rel="shortcut icon" type="image/png" href="./favicon.svg" /> | ||
<title>{title}</title> | ||
<meta name="title" content={title} /> | ||
<meta name="description" content={description} /> | ||
<meta name="author" content={author} /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content={Astro.url} /> | ||
<meta property="og:title" content={title} /> | ||
<meta property="og:description" content={description} /> | ||
<meta property="og:image" content={new URL(og, Astro.url)} /> | ||
<meta name="twitter:url" content={Astro.url} /> | ||
<meta name="twitter:title" content={title} /> | ||
<meta name="twitter:description" content={description} /> | ||
<meta name="twitter:image" content={new URL(og, Astro.url)} /> | ||
<meta name="twitter:card" content="./images/0_ayrtonsenna_0.jpg" /> | ||
</head> |
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,64 @@ | ||
--- | ||
const { title, description } = Astro.props | ||
--- | ||
|
||
<footer id="footer" class="panel"> | ||
<div class="inner split"> | ||
<div> | ||
<section> | ||
<h2>{title}</h2> | ||
<p>{description}</p> | ||
</section> | ||
<section> | ||
<h2>Follow me on ...</h2> | ||
<ul class="icons"> | ||
<li> | ||
<a href="https://twitter.com/artesdosul" class="icon brands fa-twitter" aria-label="Social"> | ||
<span class="label">Twitter</span> | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://www.facebook.com/artesdosulweb" class="icon brands fa-facebook-f" aria-label="Social"> | ||
<span class="label">Facebook</span> | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://www.instagram.com/araguaci.andrade/" class="icon brands fa-instagram" aria-label="Social"> | ||
<span class="label">Instagram</span> | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://github.com/araguaci" class="icon brands fa-github" aria-label="Social"> | ||
<span class="label">GitHub</span> | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://dribbble.com/araguaci" class="icon brands fa-dribbble" aria-label="Social"> | ||
<span class="label">Dribbble</span> | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://www.linkedin.com/in/araguaci/" class="icon brands fa-linkedin-in" aria-label="Social"> | ||
<span class="label">LinkedIn</span> | ||
</a> | ||
</li> | ||
</ul> | ||
</section> | ||
<p class="copyright">Credits | ||
This theme is based off of the <a href="https://nvlabs.github.io/stylegan3/">StyleGAN3</a> style. | ||
<br /> | ||
Developer: <a href="https://araguaci.github.io/">@araguaci</a><br /> | ||
Organization: <a href="https://www.artesdosul.com/">@artesdosul</a><br /> | ||
© Design: <a href="http://html5up.net">HTML5 UP</a><br /> | ||
Astro: <a href="https://area44.github.io/">@AREA44</a><br /> | ||
Bing: <a href="https://www.bing.com/images/search?q=melhores+imagens+Ayrton+Senna&form=HDRSC3&first=1">garimpo ...</a><br /> | ||
Google: <a href="https://www.google.com.br/search?newwindow=1&sca_esv=7af68be656babe85&sca_upv=1&sxsrf=ACQVn0_JSagrhm7pmFsXjbBhhoZPj0U_ZQ:1711907581487&q=melhores+imagens+Ayrton+Senna&uds=AMwkrPtf40cQEE8x2HwLs_wcbJ5slxE1_L9o-PP17JKeF2QFw5dzcc230aGC7io6XmkZVPManVuu9IyEDzD91785fVtME7ddm0OoL9pmCtLO44_yFk3ChY7R63qDOBu5VcM4NQiWC3lbF8VTNKI-J7KaRVmJ1UYPuWWCH3Xr0j8LpGHSYR1p5g0TCULpcH7uNl9CCr-XOix4ln9uEwc7QEMDXLpL-x37ygtzsjLiD9WEeXCXXhe63C3geP5SCPweoKDdAL09RC6_Cgp68y0yUq1aP4prNlkEcxS8jpmNSJALLzFjn8Oyl5SukqW3Te4-V65AIUs43iwudVVvoLf-PVmMxFk4L22CQw&udm=2&prmd=ivnsmbtz&sa=X&ved=2ahUKEwirmKHaiJ-FAxWLqZUCHTG1AMEQtKgLegQIChAB&biw=1402&bih=663&dpr=1.32">garimpo ...</a><br /> | ||
</p> | ||
</div> | ||
<div> | ||
<section> | ||
<iframe src="https://player.vimeo.com/video/370716912?h=58b11a3736&color=ff0179" width="640" height="360" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe> | ||
<p><a href="https://vimeo.com/370716912">Ayrton Senna</a> from <a href="https://vimeo.com/turboattack">Turbo</a> on <a href="https://vimeo.com">Vimeo</a>.</p> | ||
</div> | ||
</div> | ||
</footer> |
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,64 @@ | ||
--- | ||
const { title, description } = Astro.props | ||
--- | ||
|
||
<footer id="bio" class="panel"> | ||
<div class="inner split"> | ||
<div> | ||
<section> | ||
<h2>{title}</h2> | ||
<p>{description}</p> | ||
</section> | ||
<section> | ||
<h2>Follow me on ...</h2> | ||
<ul class="icons"> | ||
<li> | ||
<a href="https://twitter.com/artesdosul" class="icon brands fa-twitter" aria-label="Social"> | ||
<span class="label">Twitter</span> | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://www.facebook.com/artesdosulweb" class="icon brands fa-facebook-f" aria-label="Social"> | ||
<span class="label">Facebook</span> | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://www.instagram.com/araguaci.andrade/" class="icon brands fa-instagram" aria-label="Social"> | ||
<span class="label">Instagram</span> | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://github.com/araguaci" class="icon brands fa-github" aria-label="Social"> | ||
<span class="label">GitHub</span> | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://dribbble.com/araguaci" class="icon brands fa-dribbble" aria-label="Social"> | ||
<span class="label">Dribbble</span> | ||
</a> | ||
</li> | ||
<li> | ||
<a href="https://www.linkedin.com/in/araguaci/" class="icon brands fa-linkedin-in" aria-label="Social"> | ||
<span class="label">LinkedIn</span> | ||
</a> | ||
</li> | ||
</ul> | ||
</section> | ||
<p class="copyright">Credits | ||
This theme is based off of the <a href="https://nvlabs.github.io/stylegan3/">StyleGAN3</a> style. | ||
<br /> | ||
Developer: <a href="https://araguaci.github.io/">@araguaci</a><br /> | ||
Organization: <a href="https://www.artesdosul.com/">@artesdosul</a><br /> | ||
© Design: <a href="http://html5up.net">HTML5 UP</a><br /> | ||
Astro: <a href="https://area44.github.io/">@AREA44</a><br /> | ||
Bing: <a href="https://www.bing.com/images/search?q=melhores+imagens+Ayrton+Senna&form=HDRSC3&first=1">garimpo ...</a><br /> | ||
Google: <a href="https://www.google.com.br/search?newwindow=1&sca_esv=7af68be656babe85&sca_upv=1&sxsrf=ACQVn0_JSagrhm7pmFsXjbBhhoZPj0U_ZQ:1711907581487&q=melhores+imagens+Ayrton+Senna&uds=AMwkrPtf40cQEE8x2HwLs_wcbJ5slxE1_L9o-PP17JKeF2QFw5dzcc230aGC7io6XmkZVPManVuu9IyEDzD91785fVtME7ddm0OoL9pmCtLO44_yFk3ChY7R63qDOBu5VcM4NQiWC3lbF8VTNKI-J7KaRVmJ1UYPuWWCH3Xr0j8LpGHSYR1p5g0TCULpcH7uNl9CCr-XOix4ln9uEwc7QEMDXLpL-x37ygtzsjLiD9WEeXCXXhe63C3geP5SCPweoKDdAL09RC6_Cgp68y0yUq1aP4prNlkEcxS8jpmNSJALLzFjn8Oyl5SukqW3Te4-V65AIUs43iwudVVvoLf-PVmMxFk4L22CQw&udm=2&prmd=ivnsmbtz&sa=X&ved=2ahUKEwirmKHaiJ-FAxWLqZUCHTG1AMEQtKgLegQIChAB&biw=1402&bih=663&dpr=1.32">garimpo ...</a><br /> | ||
</p> | ||
</div> | ||
<div> | ||
<section> | ||
<iframe src="https://player.vimeo.com/video/370716912?h=58b11a3736&color=ff0179" width="640" height="360" frameborder="0" allow="autoplay; fullscreen; picture-in-picture" allowfullscreen></iframe> | ||
<p><a href="https://vimeo.com/370716912">Ayrton Senna</a> from <a href="https://vimeo.com/turboattack">Turbo</a> on <a href="https://vimeo.com">Vimeo</a>.</p> | ||
</div> | ||
</div> | ||
</footer> |
Oops, something went wrong.