Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: added dot #20

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Carbon Tutorial for NextJS 13

Base NextJS 13 app using IBM Carbon Design System React components
Base NextJS 13 app using IBM Carbon Design System React components.

## Create NextJS 13 app

Expand Down
4 changes: 2 additions & 2 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}
const nextConfig = {};

module.exports = nextConfig
module.exports = nextConfig;
6 changes: 3 additions & 3 deletions src/app/layout.js
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
import './globals.css'
import './globals.css';

export const metadata = {
title: 'Carbon + Next13',
description: 'IBM Carbon Tutorial with NextJS 13',
}
};

export default function RootLayout({ children }) {
return (
<html lang="en">
<body>{children}</body>
</html>
)
);
}
7 changes: 3 additions & 4 deletions src/app/page.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@

export default function Home() {
return (
<div>
Hello Carbon! Well, not quite yet. This is the starting point for the Carbon NextJS tutorial.
Hello Carbon! Well, not quite yet. This is the starting point for the
Carbon NextJS tutorial.
</div>

)
);
}