diff --git a/package.json b/package.json index 4644b7a..43606a2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "siteforge", "private": true, - "version": "1.0.2", + "version": "1.0.3", "type": "module", "scripts": { "dev": "vite", diff --git a/src/assets/hero.png b/src/assets/hero.png deleted file mode 100644 index cc51a3d..0000000 Binary files a/src/assets/hero.png and /dev/null differ diff --git a/src/assets/react.svg b/src/assets/react.svg deleted file mode 100644 index 6c87de9..0000000 --- a/src/assets/react.svg +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/src/assets/vite.svg b/src/assets/vite.svg deleted file mode 100644 index 5101b67..0000000 --- a/src/assets/vite.svg +++ /dev/null @@ -1 +0,0 @@ -Vite diff --git a/src/data/projects.ts b/src/data/projects.ts deleted file mode 100644 index 51720ef..0000000 --- a/src/data/projects.ts +++ /dev/null @@ -1,61 +0,0 @@ -export type Ownership = 'built' | 'hosted' - -export type Project = { - slug: string - title: string - domain: string - url: string - thumbnailUrl?: string - readmeUrl?: string - category: string - access: 'Public' | 'Login required' | 'Mixed' - iconUrl?: string - ownership: Ownership - status: 'Live' - summary: string - details: string - features: string[] - scanSource: 'scanned' | 'manual' - featured: { - headline: string - problem: string - solution: string - stack: string[] - highlights: string[] - nextSteps: string[] - updateNote: string - } -} - -export const projects: Project[] = [ - { - slug: 'verse-by-verse', - title: 'Verse by Verse with Nate', - domain: 'spotify.com', - url: 'https://creators.spotify.com/pod/profile/nmemmert/', - category: 'Podcast', - access: 'Public', - ownership: 'hosted', - status: 'Live', - summary: 'A verse-by-verse podcast from Nate Emmert focused on Scripture, story, and practical faith application.', - details: - 'Weekly episodes explore Scripture one verse at a time, mixing theological insight, devotional reflection, and real-life application.', - features: ['Verse-by-verse teaching', 'Weekly podcast episodes', 'Practical reflection'], - scanSource: 'manual', - featured: { - headline: 'Podcast teaching shaped around verse-by-verse discovery.', - problem: - 'Bible study and podcast listening often feel disconnected from each other and from everyday life.', - solution: - 'Verse by Verse with Nate brings Scripture study and podcast conversation together in a format that is easy to follow and apply.', - stack: ['Podcast hosting', 'Spotify', 'Verse-by-verse teaching'], - highlights: ['Episode guides', 'Scripture focus', 'Practical application'], - nextSteps: ['Add episode notes', 'Add guest interviews', 'Link transcripts and study resources'], - updateNote: 'Edit this content in src/data/projects.ts under the Verse by Verse podcast project.', - }, - }, -] - -export function getProjectBySlug(slug: string): Project | undefined { - return projects.find((project) => project.slug === slug) -}