Skip to content

Commit 2f59a05

Browse files
committed
Update favicons & siteMetadata.
1 parent bac43ab commit 2f59a05

File tree

11 files changed

+31
-61
lines changed

11 files changed

+31
-61
lines changed

README.md

Lines changed: 13 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -55,27 +55,9 @@ Next App directory with [React Server Component](https://nextjs.org/docs/getting
5555
6. Added a blog post
5656
7. Deployed on Vercel
5757

58-
## Installation
59-
60-
```bash
61-
yarn
62-
```
63-
64-
Please note, that if you are using Windows, you may need to run:
65-
66-
```bash
67-
$env:PWD = $(Get-Location).Path
68-
```
69-
7058
## Development
7159

72-
First, run the development server:
73-
74-
```bash
75-
yarn dev
76-
```
77-
78-
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
60+
devcontainer runs and opens [http://localhost:3000](http://localhost:3000)
7961

8062
Edit the layout in `app` or content in `data`. With live reloading, the pages auto-updates as you edit them.
8163

@@ -89,21 +71,21 @@ Edit the layout in `app` or content in `data`. With live reloading, the pages au
8971

9072
`data/headerNavLinks.js` - navigation links.
9173

92-
`data/logo.svg` - replace with your own logo.
74+
`data/logo.svg` - logo.
9375

94-
`data/blog` - replace with your own blog posts.
76+
`data/blog` - blog posts.
9577

9678
`public/static` - store assets such as images and favicons.
9779

9880
`tailwind.config.js` and `css/tailwind.css` - tailwind configuration and stylesheet which can be modified to change the overall look and feel of the site.
9981

100-
`css/prism.css` - controls the styles associated with the code blocks. Feel free to customize it and use your preferred prismjs theme e.g. [prism themes](https://github.com/PrismJS/prism-themes).
82+
`css/prism.css` - controls the styles associated with the code blocks. Customizeable to preferred prismjs theme e.g. [prism themes](https://github.com/PrismJS/prism-themes).
10183

10284
`contentlayer.config.ts` - configuration for Contentlayer, including definition of content sources and MDX plugins used. See [Contentlayer documentation](https://www.contentlayer.dev/docs/getting-started) for more information.
10385

10486
`components/MDXComponents.js` - pass your own JSX code or React component by specifying it over here. You can then use them directly in the `.mdx` or `.md` file. By default, a custom link, `next/image` component, table of contents component and Newsletter form are passed down. Note that the components should be default exported to avoid [existing issues with Next.js](https://github.com/vercel/next.js/issues/51593).
10587

106-
`layouts` - main templates used in pages:
88+
`layouts` - main used in pages:
10789

10890
- There are currently 3 post layouts available: `PostLayout`, `PostSimple` and `PostBanner`. `PostLayout` is the default 2 column layout with meta and author information. `PostSimple` is a simplified version of `PostLayout`, while `PostBanner` features a banner image.
10991
- There are 2 blog listing layouts: `ListLayout`, the layout used in version 1 of the template with a search bar and `ListLayoutWithTags`, currently used in version 2, which omits the search bar but includes a sidebar with information on the tags.
@@ -114,7 +96,7 @@ Edit the layout in `app` or content in `data`. With live reloading, the pages au
11496

11597
## Post
11698

117-
Content is modelled using [Contentlayer](https://www.contentlayer.dev/), which allows you to define your own content schema and use it to generate typed content objects. See [Contentlayer documentation](https://www.contentlayer.dev/docs/getting-started) for more information.
99+
Content is modelled using [Contentlayer](https://www.contentlayer.dev/), define content schema and use it to generate typed content objects. See [Contentlayer documentation](https://www.contentlayer.dev/docs/getting-started) for more information.
118100

119101
### Frontmatter
120102

@@ -139,25 +121,23 @@ Here's an example of a post's frontmatter:
139121

140122
```
141123
---
142-
title: 'Introducing Tailwind Nexjs Starter Blog'
143-
date: '2021-01-12'
124+
title: 'Starter Blog'
125+
date: '2025-01-20'
144126
lastmod: '2021-01-18'
145127
tags: ['next-js', 'tailwind', 'guide']
146128
draft: false
147-
summary: 'Looking for a performant, out of the box template, with all the best in web technology to support your blogging needs? Checkout the Tailwind Nextjs Starter Blog template.'
148-
images: ['/static/images/canada/mountains.jpg', '/static/images/canada/toronto.jpg']
129+
summary: 'A performant Stsarter Blog.'
130+
images: ['/static/images/blog-pic.jpg', '/static/images/blog-pic-2.jpg']
149131
authors: ['default', 'sparrowhawk']
150132
layout: PostLayout
151-
canonicalUrl: https://tailwind-nextjs-starter-blog.vercel.app/blog/introducing-tailwind-nextjs-starter-blog
133+
canonicalUrl: https://frankcarv.com/blog/
152134
---
153135
```
154136

155137
## Deploy
156138

157139
### Vercel
158140

159-
The easiest way to deploy the template is to deploy on [Vercel](https://vercel.com). Check out the [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
160-
161-
Showcase your projects with a hero image (16 x 9)
141+
The easiest way to deploy is on [Vercel](https://vercel.com). The [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
162142

163-
[MIT](https://github.com/timlrx/tailwind-nextjs-starter-blog/blob/main/LICENSE) © [Timothy Lin](https://www.timlrx.com)
143+
Showcase projects with a hero image (16 x 9 - 1920 x 1080)

app/tag-data.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2+
"gitops": 1,
23
"markdown": 2,
3-
"code": 1,
4-
"gitops": 1
4+
"code": 1
55
}

data/authors/default.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
name: Frank Carvajal
33
avatar: /static/images/avatar.png
4-
occupation: Full Stack SWE & DevOps Eng
4+
occupation: SWE/DevOps Eng
55
company:
66
email: frankcarv@pm.me
77
twitter: https://x.com/FullStack_Frank
8-
linkedin: https://www.linkedin.com
9-
github: https://github.com
8+
linkedin: https://www.linkedin.com/in/franklincarvajal/
9+
github: https://github.com/frankfulness
1010
---
1111

1212
👋🏻 Hi, thank you for stopping by!

data/siteMetadata.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ const siteMetadata = {
66
description: 'Hail fellow well met.',
77
language: 'en-us',
88
theme: 'dark', // system, dark or light
9-
siteUrl: 'https://tailwind-nextjs-starter-blog.vercel.app',
9+
siteUrl: 'https://frankcarv.com',
1010
siteRepo: 'https://github.com/frankfulness/blog',
1111
siteLogo: `${process.env.BASE_PATH || ''}/static/images/logo.png`,
1212
socialBanner: `${process.env.BASE_PATH || ''}/static/images/twitter-card.png`,
@@ -16,7 +16,7 @@ const siteMetadata = {
1616
x: 'https://x.com/FullStack_Frank',
1717
// facebook: 'https://facebook.com',
1818
// youtube: 'https://youtube.com',
19-
linkedin: 'https://www.linkedin.com',
19+
linkedin: 'https://www.linkedin.com/in/franklincarvajal',
2020
// threads: 'https://www.threads.net',
2121
// instagram: 'https://www.instagram.com',
2222
// medium: 'https://medium.com',

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "tailwind-nextjs-starter-blog",
2+
"name": "blog",
33
"version": "2.3.0",
44
"private": true,
55
"scripts": {
-1.16 KB
Loading
-2.01 KB
Loading
-803 Bytes
Loading
-759 Bytes
Loading
385 Bytes
Loading

0 commit comments

Comments
 (0)