From 5a7af0b0d87321c2ae7afa3e5b88933f45aded83 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Sun, 19 Apr 2026 20:26:45 +0200 Subject: [PATCH] feat: ProjectLockup component --- src/components/ProjectLockup.astro | 67 ++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 src/components/ProjectLockup.astro diff --git a/src/components/ProjectLockup.astro b/src/components/ProjectLockup.astro new file mode 100644 index 0000000..1febb35 --- /dev/null +++ b/src/components/ProjectLockup.astro @@ -0,0 +1,67 @@ +--- +interface Props { + size?: 'hero' | 'lg' | 'md'; + alignment?: 'left' | 'center'; + showWordmark?: boolean; +} + +const { size = 'hero', alignment = 'left', showWordmark = true } = Astro.props; + +const sizeClass = `lockup--${size}`; +const alignClass = `lockup--${alignment}`; +--- +
+

+ Project Bifrost. +

+ {showWordmark && ( +
+ Fenja AI +
+ )} +
+ +