diff --git a/src/components/PageTitle.astro b/src/components/PageTitle.astro index bc75757..b9e9860 100644 --- a/src/components/PageTitle.astro +++ b/src/components/PageTitle.astro @@ -3,7 +3,7 @@ import Title from './Title.astro'; export interface Props { class?: string; - grid?: 'wide' | 'narrow'; + grid?: 'fullsize' | 'wide' | 'narrow'; innerGrid?: boolean; } @@ -14,6 +14,7 @@ const { class: className, grid = 'narrow', innerGrid } = Astro.props; class:list={[ 'col-start-2 col-end-18 !mbe-0', { + 'col-start-1 col-end-18': grid === 'fullsize', 'md:col-start-3 md:col-end-17': grid === 'wide', 'md:col-start-3 md:col-end-15 xl:col-end-14 3xl:col-end-13': grid === 'narrow', '!col-start-1 row-start-1': innerGrid, diff --git a/src/components/ProjectContainer.astro b/src/components/ProjectContainer.astro index 93a2a09..4beec34 100644 --- a/src/components/ProjectContainer.astro +++ b/src/components/ProjectContainer.astro @@ -19,11 +19,11 @@ const {
{ format === '50-start' && ( -
-
+
+
-
+
@@ -31,11 +31,11 @@ const { } { format === '50-end' && ( -
-
+
+
-
+
@@ -44,10 +44,10 @@ const { { format === '70-start' && (
-
+
-
+
@@ -56,10 +56,10 @@ const { { format === '70-end' && (
-
+
-
+
@@ -71,7 +71,7 @@ const {
-
+
@@ -83,7 +83,7 @@ const {
-
+
diff --git a/src/pages/projects.astro b/src/pages/projects.astro index 3ab93b9..34a3499 100644 --- a/src/pages/projects.astro +++ b/src/pages/projects.astro @@ -20,21 +20,8 @@ const description = 'I’m a Frontend Developer by profession. I worked in Design, Editing, and 3D Animation. These are projects I created over the last years.'; --- - - - Projects - + + Projects
diff --git a/src/pages/projects/[...slug].astro b/src/pages/projects/[...slug].astro index cee2ce6..8f85d48 100644 --- a/src/pages/projects/[...slug].astro +++ b/src/pages/projects/[...slug].astro @@ -41,7 +41,7 @@ const title = entry.data.title; const description = entry.data.intro || `The detail for project "${entry.data.title}"`; --- - + {entry.data.title}