This commit is contained in:
parent
96c053d5ff
commit
f76477db98
@ -32,9 +32,9 @@ const link = translatePath(`/${collection}/${slug.split("/")[0]}`);
|
|||||||
---
|
---
|
||||||
|
|
||||||
<Card
|
<Card
|
||||||
classes={`grid gradient border-1 border-neutral overflow-hidden ${cover ? "grid-rows-[200px_1fr] sm:grid-rows-none sm:grid-cols-[1fr_200px]" : ""}`}
|
classes={`grid gradient border-1 border-neutral overflow-hidden ${cover ? "grid-rows-[200px_1fr] xs:grid-rows-none xs:grid-cols-[1fr_200px]" : ""}`}
|
||||||
>
|
>
|
||||||
<Card.Content classes="px-8 py-7 order-last sm:order-first">
|
<Card.Content classes="px-8 py-7 order-last xs:order-first">
|
||||||
<Card.Title classes="text-4xl flex items-center gap-2">
|
<Card.Title classes="text-4xl flex items-center gap-2">
|
||||||
{icon && <img src={icon} class="h-6" />}
|
{icon && <img src={icon} class="h-6" />}
|
||||||
{title}
|
{title}
|
||||||
|
@ -5,6 +5,7 @@ import { generateThumbHash } from "@helpers/image";
|
|||||||
interface Props {
|
interface Props {
|
||||||
src: ImageMetadata;
|
src: ImageMetadata;
|
||||||
alt: string;
|
alt: string;
|
||||||
|
pictureClass?: string;
|
||||||
class?: string;
|
class?: string;
|
||||||
caption?: string;
|
caption?: string;
|
||||||
hash?: boolean;
|
hash?: boolean;
|
||||||
@ -12,7 +13,14 @@ interface Props {
|
|||||||
maxWidth?: number;
|
maxWidth?: number;
|
||||||
}
|
}
|
||||||
|
|
||||||
const { src: image, loader = true, hash = true, alt, maxWidth } = Astro.props;
|
const {
|
||||||
|
src: image,
|
||||||
|
loader = true,
|
||||||
|
pictureClass = "",
|
||||||
|
hash = true,
|
||||||
|
alt,
|
||||||
|
maxWidth,
|
||||||
|
} = Astro.props;
|
||||||
|
|
||||||
let thumbhash = hash ? await generateThumbHash(image) : "";
|
let thumbhash = hash ? await generateThumbHash(image) : "";
|
||||||
|
|
||||||
@ -40,7 +48,7 @@ const sizes = [
|
|||||||
alt={alt}
|
alt={alt}
|
||||||
data-thumbhash={thumbhash}
|
data-thumbhash={thumbhash}
|
||||||
pictureAttributes={{
|
pictureAttributes={{
|
||||||
class: `${hash ? "block h-full relative" : ""} ${loader ? "thumb" : ""}`,
|
class: `${hash ? "block h-full relative" : ""} ${loader ? "thumb" : ""} ${pictureClass}`,
|
||||||
}}
|
}}
|
||||||
class={Astro.props.class}
|
class={Astro.props.class}
|
||||||
widths={sizes.map((size) => size.width)}
|
widths={sizes.map((size) => size.width)}
|
||||||
|
@ -24,19 +24,15 @@ const flags = {
|
|||||||
const t = useTranslations(Astro.url);
|
const t = useTranslations(Astro.url);
|
||||||
---
|
---
|
||||||
|
|
||||||
<ul class="flex items-center gap-4">
|
{
|
||||||
{
|
Object.entries(locales).map(([lang, label]) => (
|
||||||
Object.entries(locales).map(([lang, label]) => (
|
<a
|
||||||
<li>
|
class="flex gap-2 items-center"
|
||||||
<a
|
href={translatePath(lang)}
|
||||||
class="flex gap-2 items-center"
|
data-astro-prefetch
|
||||||
href={translatePath(lang)}
|
>
|
||||||
data-astro-prefetch
|
<span class="text-xs">{flags[label as keyof typeof flags]}</span>
|
||||||
>
|
{t(label as "de")}
|
||||||
<span class="text-xs">{flags[label as keyof typeof flags]}</span>
|
</a>
|
||||||
{t(label as "de")}
|
))
|
||||||
</a>
|
}
|
||||||
</li>
|
|
||||||
))
|
|
||||||
}
|
|
||||||
</ul>
|
|
||||||
|
@ -10,12 +10,15 @@ const t = useTranslations(Astro.url);
|
|||||||
---
|
---
|
||||||
|
|
||||||
<Card
|
<Card
|
||||||
classes="googley-eye-target relative rounded-diag-md border border-neutral gradient grid grid-cols-[250px_1fr] h-[180px] mt-8"
|
classes="googley-eye-target relative rounded-diag-md border border-neutral gradient grid xs:grid-cols-[250px_1fr] min-h-[180px] sm:h-[180px] mt-8"
|
||||||
>
|
>
|
||||||
<div class="image">
|
<div
|
||||||
|
class="image relative h-[130%] self-end items-end flex overflow-hidden order-last xs:order-first"
|
||||||
|
>
|
||||||
<Image
|
<Image
|
||||||
src={MaxImg}
|
src={MaxImg}
|
||||||
alt="its mee"
|
alt="its mee"
|
||||||
|
class="object-bottom h-full object-cover w-1/2 xs:w-full"
|
||||||
hash={false}
|
hash={false}
|
||||||
maxWidth={700}
|
maxWidth={700}
|
||||||
loader={false}
|
loader={false}
|
||||||
@ -28,7 +31,7 @@ const t = useTranslations(Astro.url);
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="content gap-2">
|
<div class="content flex flex-col p-8 pl-4 gap-2 justify-center">
|
||||||
<h1 class="text-2xl">{t("home.title")}</h1>
|
<h1 class="text-2xl">{t("home.title")}</h1>
|
||||||
<p>{t("home.subtitle")}</p>
|
<p>{t("home.subtitle")}</p>
|
||||||
</div>
|
</div>
|
||||||
@ -36,13 +39,11 @@ const t = useTranslations(Astro.url);
|
|||||||
|
|
||||||
<style>
|
<style>
|
||||||
.image {
|
.image {
|
||||||
position: relative;
|
|
||||||
height: 130%;
|
|
||||||
align-self: end;
|
|
||||||
overflow: hidden;
|
|
||||||
border-bottom-left-radius: var(--border-radius-md);
|
border-bottom-left-radius: var(--border-radius-md);
|
||||||
display: flex;
|
}
|
||||||
align-items: flex-end;
|
|
||||||
|
.googley-eye-target {
|
||||||
|
height: calc(100% - 30px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.image::before {
|
.image::before {
|
||||||
@ -72,12 +73,4 @@ const t = useTranslations(Astro.url);
|
|||||||
top: 31%;
|
top: 31%;
|
||||||
right: 12%;
|
right: 12%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.content {
|
|
||||||
padding: 30px;
|
|
||||||
padding-left: 15px;
|
|
||||||
display: flex;
|
|
||||||
flex-direction: column;
|
|
||||||
justify-content: space-around;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
3
src/components/SmallGrid.astro
Normal file
3
src/components/SmallGrid.astro
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
<div class="grid xs:grid-cols-2 gap-4 mt-4">
|
||||||
|
<slot />
|
||||||
|
</div>
|
@ -3,7 +3,7 @@ import { useTranslations } from "@i18n/utils";
|
|||||||
const t = useTranslations(Astro.url);
|
const t = useTranslations(Astro.url);
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="arrow flex items-center gap-2">
|
<div class="arrow items-center gap-2 hidden lg:flex">
|
||||||
<img src="/images/arrow_a.svg" alt="Arrow" />
|
<img src="/images/arrow_a.svg" alt="Arrow" />
|
||||||
<p class="text-xl">{t("latest-projects")}</p>
|
<p class="text-xl">{t("latest-projects")}</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -3,7 +3,7 @@ import { useTranslations } from "@i18n/utils";
|
|||||||
const t = useTranslations(Astro.url);
|
const t = useTranslations(Astro.url);
|
||||||
---
|
---
|
||||||
|
|
||||||
<div class="arrow flex items-center gap-2">
|
<div class="arrow items-center gap-2 hidden lg:flex">
|
||||||
<p class="text-xl">{t("latest-posts")}</p>
|
<p class="text-xl">{t("latest-posts")}</p>
|
||||||
<img src="/images/arrow_b.svg" alt="Arrow" />
|
<img src="/images/arrow_b.svg" alt="Arrow" />
|
||||||
</div>
|
</div>
|
||||||
|
@ -16,6 +16,7 @@ export const ui = {
|
|||||||
"latest-posts": "Latest Posts",
|
"latest-posts": "Latest Posts",
|
||||||
"latest-projects": "Latest Projects",
|
"latest-projects": "Latest Projects",
|
||||||
'home.title': 'Hi, I’m Max :)',
|
'home.title': 'Hi, I’m Max :)',
|
||||||
|
'website-source': 'source',
|
||||||
'home.subtitle': 'Trained Media Designer, Blender Nerd, Developer and Hardware Tinkerer.',
|
'home.subtitle': 'Trained Media Designer, Blender Nerd, Developer and Hardware Tinkerer.',
|
||||||
'nav.blog': 'Blog',
|
'nav.blog': 'Blog',
|
||||||
'nav.projects': 'Projects',
|
'nav.projects': 'Projects',
|
||||||
@ -31,6 +32,7 @@ export const ui = {
|
|||||||
"latest-projects": "Neueste Projekte",
|
"latest-projects": "Neueste Projekte",
|
||||||
"read-more": "weiterlesen",
|
"read-more": "weiterlesen",
|
||||||
'home.title': 'Hi, ich bin Max :)',
|
'home.title': 'Hi, ich bin Max :)',
|
||||||
|
'website-source': 'Sourcecode',
|
||||||
'home.subtitle': 'Ausgebildeter Mediengestalter, Blender Nerd, Entwickler und Hardware Bastler.',
|
'home.subtitle': 'Ausgebildeter Mediengestalter, Blender Nerd, Entwickler und Hardware Bastler.',
|
||||||
'nav.blog': 'Blog',
|
'nav.blog': 'Blog',
|
||||||
'nav.projects': 'Projekte',
|
'nav.projects': 'Projekte',
|
||||||
|
@ -2,10 +2,12 @@
|
|||||||
import LanguagePicker from "../components/LanguagePicker.astro";
|
import LanguagePicker from "../components/LanguagePicker.astro";
|
||||||
import { AstroFont } from "astro-font";
|
import { AstroFont } from "astro-font";
|
||||||
import Nav from "../components/Nav.astro";
|
import Nav from "../components/Nav.astro";
|
||||||
|
import { useTranslations } from "@i18n/utils";
|
||||||
interface Props {
|
interface Props {
|
||||||
title: string;
|
title: string;
|
||||||
width?: "full" | "compact";
|
width?: "full" | "compact";
|
||||||
}
|
}
|
||||||
|
const t = useTranslations(Astro.url);
|
||||||
|
|
||||||
const { title, width = "compact" } = Astro.props;
|
const { title, width = "compact" } = Astro.props;
|
||||||
---
|
---
|
||||||
@ -123,8 +125,14 @@ const { title, width = "compact" } = Astro.props;
|
|||||||
<main id="main-content" class="flex flex-col mt-4xl gap-y-2xl">
|
<main id="main-content" class="flex flex-col mt-4xl gap-y-2xl">
|
||||||
<slot />
|
<slot />
|
||||||
</main>
|
</main>
|
||||||
<footer class="px-4">
|
<footer class="px-4 flex gap-8 mb-4">
|
||||||
<LanguagePicker />
|
<LanguagePicker />
|
||||||
|
<a
|
||||||
|
href="https://git.max-richter.dev/max/website"
|
||||||
|
class="flex gap-2 items-center"
|
||||||
|
>
|
||||||
|
<span class="i-tabler-brand-git"></span>{t("website-source")}
|
||||||
|
</a>
|
||||||
</footer>
|
</footer>
|
||||||
<style>
|
<style>
|
||||||
.layout-compact {
|
.layout-compact {
|
||||||
|
@ -13,6 +13,7 @@ import SmallCard from "@components/SmallCard.astro";
|
|||||||
import LinkCard from "@components/LinkCard.astro";
|
import LinkCard from "@components/LinkCard.astro";
|
||||||
import ArrowA from "@components/arrows/ArrowA.astro";
|
import ArrowA from "@components/arrows/ArrowA.astro";
|
||||||
import ArrowB from "@components/arrows/ArrowB.astro";
|
import ArrowB from "@components/arrows/ArrowB.astro";
|
||||||
|
import SmallGrid from "@components/SmallGrid.astro";
|
||||||
|
|
||||||
const projects = filterCollection(
|
const projects = filterCollection(
|
||||||
await getCollection("projects"),
|
await getCollection("projects"),
|
||||||
@ -43,7 +44,7 @@ const otherPosts = posts.filter((post) => featuredPost !== post).slice(0, 3);
|
|||||||
<span class="i-tabler-circle-arrow-right-thin"></span>
|
<span class="i-tabler-circle-arrow-right-thin"></span>
|
||||||
<ArrowA />
|
<ArrowA />
|
||||||
{featuredProject && <HeroCard post={featuredProject} />}
|
{featuredProject && <HeroCard post={featuredProject} />}
|
||||||
<div class="grid xs:grid-cols-2 gap-4 mt-4">
|
<SmallGrid>
|
||||||
{
|
{
|
||||||
otherProjects.length > 0 &&
|
otherProjects.length > 0 &&
|
||||||
otherProjects.map((project) => <SmallCard post={project} />)
|
otherProjects.map((project) => <SmallCard post={project} />)
|
||||||
@ -53,19 +54,19 @@ const otherPosts = posts.filter((post) => featuredPost !== post).slice(0, 3);
|
|||||||
title={t("more-projects")}
|
title={t("more-projects")}
|
||||||
icon="circle-arrow-right"
|
icon="circle-arrow-right"
|
||||||
/>
|
/>
|
||||||
</div>
|
</SmallGrid>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="relative my-8">
|
<section class="relative my-8">
|
||||||
{featuredPost && <HeroCard post={featuredPost} />}
|
{featuredPost && <HeroCard post={featuredPost} />}
|
||||||
|
|
||||||
<ArrowB />
|
<ArrowB />
|
||||||
<div class="grid grid-cols-2 gap-4 mt-4">
|
<SmallGrid>
|
||||||
{
|
{
|
||||||
otherPosts.length > 0 &&
|
otherPosts.length > 0 &&
|
||||||
otherPosts.map((post) => <SmallCard post={post} />)
|
otherPosts.map((post) => <SmallCard post={post} />)
|
||||||
}
|
}
|
||||||
<LinkCard link={tp("/blog")} title={t("more-posts")} />
|
<LinkCard link={tp("/blog")} title={t("more-posts")} />
|
||||||
</div>
|
</SmallGrid>
|
||||||
</section>
|
</section>
|
||||||
</Layout>
|
</Layout>
|
||||||
|
@ -22,8 +22,8 @@ export default defineConfig({
|
|||||||
"md": "20px",
|
"md": "20px",
|
||||||
"diag-md": "0px var(--border-radius-md) 0px var(--border-radius-md)"
|
"diag-md": "0px var(--border-radius-md) 0px var(--border-radius-md)"
|
||||||
},
|
},
|
||||||
screens: {
|
breakpoints: {
|
||||||
xs: "375px",
|
xs: "450px",
|
||||||
sm: "640px",
|
sm: "640px",
|
||||||
md: "768px",
|
md: "768px",
|
||||||
lg: "1024px",
|
lg: "1024px",
|
||||||
|
Loading…
Reference in New Issue
Block a user