Skip to content

Commit

Permalink
changes to personalize
Browse files Browse the repository at this point in the history
changes personalizing
  • Loading branch information
WebCraftPhil committed Jul 18, 2023
1 parent 4d5a2aa commit 00e0d83
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 7 deletions.
7 changes: 7 additions & 0 deletions .dotfiles/Config.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Config

Configuration
Update your name in theme.config.js or change the footer.
Update your name and site URL for the RSS feed in scripts/gen-rss.js.
Update the meta tags in pages/_document.js.
Update the posts inside pages/posts/*.md with your own content.
7 changes: 7 additions & 0 deletions nextjs-portfolio-philg.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"folders": [
{
"path": ".dotfiles/vscodeworkspacevercel.code-workspace"
}
]
}
8 changes: 4 additions & 4 deletions pages/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ title: About
date: 2021-03-19
---

# Your Name
# Phil Greene

Hey, I'm a Senior Software Engineer at Company. I enjoy working with Next.js and crafting beautiful front-end experiences.

Expand All @@ -14,7 +14,7 @@ This portfolio is built with **Next.js** and a library called [Nextra](https://n

---

- Twitter [@yourname](https://twitter.com/yourname)
- GitHub [@yourname](https://github.com/yourname)
- Twitter [@vtguy65(https://twitter.com/vtguy65)
- GitHub [@SpunMuffins](https://github.com/yourname)
- Instagram [@yourname](https://instagram.com/yourname)
- Email your@name.com
- Email vtguy65@gmail.com
4 changes: 2 additions & 2 deletions scripts/gen-rss.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ const matter = require('gray-matter')
async function generate() {
const feed = new RSS({
title: 'Your Name',
site_url: 'https://yoursite.com',
feed_url: 'https://yoursite.com/feed.xml'
site_url: 'https://www.philgreene.net',
feed_url: 'https://wwww.philgreene.net/feed.xml'
})

const posts = await fs.readdir(path.join(__dirname, '..', 'pages', 'posts'))
Expand Down
2 changes: 1 addition & 1 deletion theme.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const YEAR = new Date().getFullYear()
export default {
footer: (
<small style={{ display: 'block', marginTop: '8rem' }}>
<time>{YEAR}</time> © Your Name.
<time>{YEAR}</time> © Phil Greene.
<a href="/feed.xml">RSS</a>
<style jsx>{`
a {
Expand Down

0 comments on commit 00e0d83

Please sign in to comment.