Skip to content

Commit 94c7e72

Browse files
committed
Improve wording in demo
1 parent 0060cf7 commit 94c7e72

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

_posts/nextjs-blog-boilerplate-presentation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ image: /assets/images/posts/random-img.jpg
88

99
[![Nextjs starter banner](@@baseUrl@@/assets/images/nextjs-starter-banner.png)](https://creativedesignsguru.com/demo/Nextjs-Blog-Boilerplate/)
1010

11-
## Next js Blog Boilerplate
11+
## Next js Blog Boilerplate with Tailwind CSS
1212

13-
🚀 Next.js Blog Boilerplate is starter code for your blog based on Next.js framework. ⚡️ Made with [Next.js](https://nextjs.org), [TypeScript](https://www.typescriptlang.org), [ESLint](https://eslint.org), [Prettier](https://prettier.io), [PostCSS](https://postcss.org), [Tailwind CSS](https://tailwindcss.com).
13+
🚀 Next.js Blog Boilerplate is starter code for your blog based on Next.js 10+ framework with Tailwind CSS 2.0. ⚡️ Made with [Next.js](https://nextjs.org), [TypeScript](https://www.typescriptlang.org), [ESLint](https://eslint.org), [Prettier](https://prettier.io), [PostCSS](https://postcss.org), [Tailwind CSS](https://tailwindcss.com).
1414

1515
Clone this project and use it to create your own [Next.js](https://nextjs.org) blog. You can check a [Next js blog templates demo](https://creativedesignsguru.com/demo/Nextjs-Blog-Boilerplate/).
1616

src/templates/Main.tsx

+13-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,13 @@ const Main = (props: IMainProps) => (
4141

4242
<div className="text-xl py-5">{props.children}</div>
4343

44-
<div className="border-t border-gray-300 text-center py-8">
45-
Made with
44+
<div className="border-t border-gray-300 text-center py-8 text-sm">
45+
© Copyright
46+
{' '}
47+
{new Date().getFullYear()}
48+
{' '}
49+
{Config.title}
50+
. Powered with
4651
{' '}
4752
<span role="img" aria-label="Love">
4853
@@ -51,6 +56,12 @@ const Main = (props: IMainProps) => (
5156
by
5257
{' '}
5358
<a href="https://creativedesignsguru.com">CreativeDesignsGuru</a>
59+
{/*
60+
* PLEASE READ THIS SECTION
61+
* We'll really appreciate if you could have a link to our website
62+
* The link doesn't need to appear on every pages, one link on one page is enough.
63+
* Thank you for your support it'll mean a lot for us.
64+
*/}
5465
</div>
5566
</div>
5667
</div>

src/utils/Config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export const Config = {
22
site_name: 'Starter',
33
title: 'Next.js Boilerplate',
4-
description: 'Starter code for your Next.js blog Boilerplate',
4+
description: 'Starter code for your Next.js blog Boilerplate with Tailwind CSS',
55
url: 'https://example.com',
66
locale: 'en',
77
author: 'Anonymous',

tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"strict": true,
1010
"alwaysStrict": true,
1111
"strictNullChecks": true,
12-
"noUncheckedIndexedAccess": true,
1312

1413
"noImplicitAny": true,
1514
"noImplicitReturns": true,

0 commit comments

Comments
 (0)