Skip to content

Commit

Permalink
some coppy fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
daysgobye committed Nov 3, 2024
1 parent 71b21b5 commit fc2e603
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 17 deletions.
4 changes: 3 additions & 1 deletion src/components/Subscribe.astro
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
---
import Button from './Button.astro';
import siteConfig from '../data/site-config';
import { undefined } from 'astro:schema';
const subscribe = siteConfig.subscribe;
// const subscribe = siteConfig.subscribe;
const subscribe = { formUrl: undefined, title: 'sub', text: '' };
const { class: className } = Astro.props;
---
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
---
title: The Pragmatic Tupperware
title: Pragmatic Tupperware
excerpt: Ditch the mismatched Tupperware! Why deli containers are the ultimate food storage solution. They're cheap, stackable, and leak-proof. Plus, one lid fits all containers! Learn more about the magic of deli containers and upgrade your kitchen today.
publishDate: 'Nov 3 2024'
isFeatured: true
tags:
- product
seo:
Expand Down
4 changes: 2 additions & 2 deletions src/data/site-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ const siteConfig: SiteConfig = {
}
],
hero: {
title: 'Hi There & Welcome to My Corner of the Web!',
title: 'I love reading content feeds and hate seeing ai garbage in there. This is how Im fixing it, one post at a time.',
text: `
Hey, I’m Cole. I own Boardsource, but when I’m not doing that, I’m probably messing around with programming and making terrible apps—that’s my version of video games. I’m really into custom keyboards, and I think AI is gonna pay off in the long run, even though it’s gonna be a bit of a bumpy ride.
Hey, I’m Cole. I co-own Boardsource, but when I’m not doing that, I’m probably messing around with programming and making terrible apps—that’s kinda my version of video games. I’m really into custom keyboards obvs.
`,
image: {
src: '/hero.jpeg',
Expand Down
14 changes: 1 addition & 13 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,7 @@ const featuredProjects = projects.filter(({ data }) => data.isFeatured);

<BaseLayout description={siteConfig.description} image={siteConfig.image}>
<Hero />
{
featuredProjects?.length > 0 && (
<div class="mb-16 sm:mb-24">
<h2 class="mb-12 text-xl font-sans italic sm:mb-16 sm:text-2xl">Projects</h2>
{featuredProjects.map((project) => (
<ProjectPreview project={project} class="mb-10 sm:mb-12" headingLevel="h3" />
))}
<div class="mt-12 sm:mt-16">
<Button href="/projects">View All Projects</Button>
</div>
</div>
)
}

{
featuredPosts?.length > 0 && (
<div class="mb-16 sm:mb-24">
Expand Down

0 comments on commit fc2e603

Please sign in to comment.