diff --git a/content/projects/itour.md b/content/projects/itour.md index e990986..576e455 100644 --- a/content/projects/itour.md +++ b/content/projects/itour.md @@ -1,8 +1,9 @@ --- title: 'iTour' -description: 'iTour project description' image: '/iTour.jpg' +features: [] technologies: ['JavaScript', 'React', 'Next.js', 'TailwindCSS', 'i18n'] +website: 'https://travel-agency-eight-murex.vercel.app/' --- iTour project info goes here diff --git a/content/projects/skauna.md b/content/projects/skauna.md index f838a2b..63716b0 100644 --- a/content/projects/skauna.md +++ b/content/projects/skauna.md @@ -1,8 +1,10 @@ --- title: 'Skauna' -description: 'Skauna project description' image: '/Skauna.jpg' -technologies: ['HTML', 'CSS', 'JavaScript'] +features: [] +technologies: ['HTML', 'CSS', 'SCSS', 'JavaScript', 'jQuery'] +website: 'https://skauna.com/' +github: 'https://github.com/firehawk89/Skauna-website' --- -Skauna project info goes here +Responsive landing for Skauna. diff --git a/content/projects/yelpcamp.md b/content/projects/yelpcamp.md index 32b0da7..75c8b6a 100644 --- a/content/projects/yelpcamp.md +++ b/content/projects/yelpcamp.md @@ -1,5 +1,6 @@ --- title: 'YelpCamp' +image: '/YelpCamp.jpg' features: [ 'User Authentication (Log In and Register) and Authorization (Post, Edit, Delete or Rate Campground)', @@ -7,8 +8,9 @@ features: 'Cluster Map', 'Image Upload' ] -image: '/YelpCamp.jpg' technologies: ['JavaScript', 'Node.js', 'Express', 'MongoDB', 'Bootstrap'] +website: 'https://yelp-camp-1s3s.onrender.com/' +github: 'https://github.com/firehawk89/YelpCamp' --- An upgraded version of Node.js web app project from the "The Web Developer Bootcamp" course on Udemy by Colt Steele. diff --git a/src/types/Project.ts b/src/types/Project.ts index 79a4c8a..edf779c 100644 --- a/src/types/Project.ts +++ b/src/types/Project.ts @@ -1,10 +1,12 @@ type Project = { body: Promise | string features: string[] + github: string image: string slug: string technologies: string[] title: string + website: string } export default Project diff --git a/src/utils/projects.ts b/src/utils/projects.ts index b6e58c6..6293bd3 100644 --- a/src/utils/projects.ts +++ b/src/utils/projects.ts @@ -51,7 +51,7 @@ export const getProject = async (slug: string): Promise => { const { content, - data: { features, image, technologies, title }, + data: { features, github, image, technologies, title, website }, } = matter(text) const renderer = new marked.Renderer() @@ -60,5 +60,5 @@ export const getProject = async (slug: string): Promise => { } const body = marked(content, { renderer }) - return { body, features, image, slug, technologies, title } + return { body, features, github, image, slug, technologies, title, website } }