First about version and rescaling
All checks were successful
Linting and checking code / get-version (push) Successful in 2s
Linting and checking code / astro-check (push) Successful in 12s
Build and deploy preview site / check-tag (push) Successful in 2s
Build and deploy preview site / checking (push) Successful in 12s
Build and deploy preview site / build-site (push) Successful in 1m11s
Build and deploy preview site / run-unlighthouse (push) Successful in 0s
Build and deploy preview site / auto-deploy-dockge (push) Successful in 3s
Build and deploy preview site / create-release (push) Successful in 5s
All checks were successful
Linting and checking code / get-version (push) Successful in 2s
Linting and checking code / astro-check (push) Successful in 12s
Build and deploy preview site / check-tag (push) Successful in 2s
Build and deploy preview site / checking (push) Successful in 12s
Build and deploy preview site / build-site (push) Successful in 1m11s
Build and deploy preview site / run-unlighthouse (push) Successful in 0s
Build and deploy preview site / auto-deploy-dockge (push) Successful in 3s
Build and deploy preview site / create-release (push) Successful in 5s
This commit is contained in:
parent
e717b4b8dd
commit
b0fc3a05c5
11 changed files with 63 additions and 13 deletions
|
@ -1,5 +1,5 @@
|
||||||
name: Build and deploy preview site
|
name: Build and deploy preview site
|
||||||
run-name: Building and deploying pewview for version ${{ github.ref_name }}
|
run-name: Building and deploying preview for version ${{ github.ref_name }}
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
name: Run unlighthouse-tests [Downstream pipeline for ${{ inputs.containertag }}]
|
name: Run unlighthouse-tests [Downstream pipeline]
|
||||||
|
run-name: Run unlighthouse-tests [Downstream pipeline] for version ${{ inputs.containertag }}
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
inputs:
|
inputs:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"name": "@firq/fgosite",
|
"name": "@firq/fgosite",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"version": "0.2.0-pre.39",
|
"version": "0.2.0-pre.40",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "astro dev",
|
"dev": "astro dev",
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 425 KiB After Width: | Height: | Size: 248 KiB |
Binary file not shown.
Before Width: | Height: | Size: 421 KiB After Width: | Height: | Size: 268 KiB |
Binary file not shown.
Before Width: | Height: | Size: 436 KiB After Width: | Height: | Size: 283 KiB |
53
src/components/aboutText.astro
Normal file
53
src/components/aboutText.astro
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
---
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<div>
|
||||||
|
<p>
|
||||||
|
I'm a 23 year old software developer from Germany. Even if my roots are with Electrical Engineering,
|
||||||
|
I am currently pursuing a Masters Degree in Computer Science after starting to code more during my studies.
|
||||||
|
I am mostly programming in Python, but I'm also confident in writing Javascript.
|
||||||
|
</p>
|
||||||
|
<p>
|
||||||
|
I enjoy biking and hiking, as well as visiting different anime conventions.
|
||||||
|
I am a huge fan of the Fate franchise, specifically Fate/Grand Order, which I am playing since the end of 2019.
|
||||||
|
I also enjoy other games, mainly Honkai: Star Rail and theHunter: Call of the Wild.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
div {
|
||||||
|
font-size: 16px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 24px;
|
||||||
|
font-family: 'Work Sans Variable', sans-serif;
|
||||||
|
max-width: min(87.5%, 360px);
|
||||||
|
background-color: var(--c-primary-background);
|
||||||
|
color: var(--c-primary-text);
|
||||||
|
border-radius: 1rem;
|
||||||
|
padding: 1rem 1rem;
|
||||||
|
margin-top: -0.75rem;
|
||||||
|
text-align: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
div > p:first-of-type {
|
||||||
|
margin-top: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
div > p:last-of-type {
|
||||||
|
margin-bottom: 0px;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 512px) {
|
||||||
|
div {
|
||||||
|
max-width: 75%;
|
||||||
|
text-align: justify;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 1000px) {
|
||||||
|
div {
|
||||||
|
max-width: 65%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
|
@ -25,7 +25,7 @@ const loadedImage = plsLoadImage(images, imagePath)
|
||||||
aria-label=`${name} - new window`
|
aria-label=`${name} - new window`
|
||||||
>
|
>
|
||||||
<div class="heading">{name}</div>
|
<div class="heading">{name}</div>
|
||||||
<Image src={loadedImage} alt={name} loading={'eager'} width={192} height={192} quality={100}/>
|
<Image src={loadedImage} alt={name} loading={'eager'} width={128} height={128} quality={100}/>
|
||||||
<h2 class="subtext">
|
<h2 class="subtext">
|
||||||
{origin}
|
{origin}
|
||||||
</h2>
|
</h2>
|
||||||
|
@ -80,7 +80,7 @@ const loadedImage = plsLoadImage(images, imagePath)
|
||||||
width: auto;
|
width: auto;
|
||||||
height: auto;
|
height: auto;
|
||||||
img {
|
img {
|
||||||
width: 160px;
|
width: 128px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -66,7 +66,6 @@ const displayBackButton = returnbutton ? "": "display: none"
|
||||||
}
|
}
|
||||||
|
|
||||||
.sub {
|
.sub {
|
||||||
margin-top: 0.5em;
|
|
||||||
font-size: 0.9rem;
|
font-size: 0.9rem;
|
||||||
font-weight: 500;
|
font-weight: 500;
|
||||||
font-family: 'Work Sans Variable', sans-serif;
|
font-family: 'Work Sans Variable', sans-serif;
|
||||||
|
|
|
@ -47,13 +47,6 @@ const { title } = Astro.props
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (min-width: 512px) {
|
|
||||||
div {
|
|
||||||
row-gap: 1.5em;
|
|
||||||
column-gap: 1.5em;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (min-width: 1000px) {
|
@media (min-width: 1000px) {
|
||||||
.base {
|
.base {
|
||||||
margin-left: 3rem;
|
margin-left: 3rem;
|
||||||
|
|
|
@ -4,6 +4,7 @@ import BaseSection from '../layouts/baseSection.astro'
|
||||||
import FavouriteCard from '../components/cards/favouriteCard.astro'
|
import FavouriteCard from '../components/cards/favouriteCard.astro'
|
||||||
import favouritesdata from '../../static/data/_favouritesdata.json'
|
import favouritesdata from '../../static/data/_favouritesdata.json'
|
||||||
import Hi from '../components/titles/title.astro'
|
import Hi from '../components/titles/title.astro'
|
||||||
|
import AboutText from '../components/aboutText.astro'
|
||||||
|
|
||||||
const description =
|
const description =
|
||||||
'The very own page of Firq for providing informating about TA servants, listing past TA achievements and hosting a blog for talking about FGO, Programming and other stuff'
|
'The very own page of Firq for providing informating about TA servants, listing past TA achievements and hosting a blog for talking about FGO, Programming and other stuff'
|
||||||
|
@ -15,6 +16,9 @@ const description =
|
||||||
descriptionOverride={description}
|
descriptionOverride={description}
|
||||||
>
|
>
|
||||||
<Hi />
|
<Hi />
|
||||||
|
<BaseSection title="About me">
|
||||||
|
<AboutText/>
|
||||||
|
</BaseSection>
|
||||||
<BaseSection title="Favourite Things">
|
<BaseSection title="Favourite Things">
|
||||||
{favouritesdata.map((item) => <FavouriteCard {...item} />)}
|
{favouritesdata.map((item) => <FavouriteCard {...item} />)}
|
||||||
</BaseSection>
|
</BaseSection>
|
||||||
|
|
Loading…
Reference in a new issue