my website
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: get rid of the Welcome component

+3 -20
-9
src/components/Welcome.astro
··· 1 - --- 2 - 3 - --- 4 - 5 - <div class="welcome"> 6 - <p> 7 - <slot /> 8 - </p> 9 - </div>
+1 -2
src/pages/404.astro
··· 2 2 import BaseHead from "../components/BaseHead.astro"; 3 3 import { SITE_TITLE, SITE_DESCRIPTION } from "../consts"; 4 4 import Intro from "../components/Intro.astro"; 5 - import Welcome from "../components/Welcome.astro"; 6 5 import Header from "../components/Header.astro"; 7 6 --- 8 7 ··· 18 17 <main class="container"> 19 18 <Header title={SITE_TITLE} /> 20 19 <Intro title="404 - page not found" /> 21 - <Welcome> You're lost, but aren't we all? :) </Welcome> 20 + <p>You're lost, but aren't we all? :)</p> 22 21 </main> 23 22 </body> 24 23 </html>
+1 -2
src/pages/blog.astro
··· 2 2 import BaseHead from "../components/BaseHead.astro"; 3 3 import { SITE_TITLE, SITE_DESCRIPTION, AUTHOR, PUBLISH_YEAR } from "../consts"; 4 4 import Intro from "../components/Intro.astro"; 5 - import Welcome from "../components/Welcome.astro"; 6 5 import PostsIndex from "../components/PostsIndex.astro"; 7 6 import ContactLinks from "../components/ContactLinks.astro"; 8 7 import Header from "../components/Header.astro"; ··· 17 16 <main class="container"> 18 17 <Header title={SITE_TITLE} /> 19 18 <Intro title={`vixalien´s blog`} /> 20 - <Welcome> An archive of all my blog posts. </Welcome> 19 + <p> An archive of all my blog posts. </p> 21 20 <h2>Posts</h2> 22 21 <PostsIndex /> 23 22
-1
src/pages/index.astro
··· 2 2 import BaseHead from "../components/BaseHead.astro"; 3 3 import { SITE_TITLE, SITE_DESCRIPTION, AUTHOR } from "../consts"; 4 4 import Intro from "../components/Intro.astro"; 5 - import Welcome from "../components/Welcome.astro"; 6 5 import ContactLinks from "../components/ContactLinks.astro"; 7 6 --- 8 7
+1 -2
src/pages/portfolio.astro
··· 2 2 import BaseHead from "../components/BaseHead.astro"; 3 3 import { SITE_TITLE, SITE_DESCRIPTION, AUTHOR, PUBLISH_YEAR } from "../consts"; 4 4 import Intro from "../components/Intro.astro"; 5 - import Welcome from "../components/Welcome.astro"; 6 5 import Header from "../components/Header.astro"; 7 6 import ProjectsIndex from "../components/ProjectsIndex.astro"; 8 7 --- ··· 16 15 <main class="container"> 17 16 <Header title={SITE_TITLE} /> 18 17 <Intro title={`vixalien´s portfolio`} /> 19 - <Welcome> Work I've worked on in the past. </Welcome> 18 + <p> Work I've worked on in the past. </p> 20 19 <h2>Projects</h2> 21 20 <ProjectsIndex /> 22 21
-4
src/styles/global.css
··· 185 185 margin-bottom: 0; 186 186 } 187 187 188 - .welcome p.description { 189 - color: var(--fg); 190 - } 191 - 192 188 .tags a { 193 189 color: inherit; 194 190 }