-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: breaking issue in example site build and resolve minor function/…
…UI bugs (#3) - Fixed the breaking issue that occurred when building the example site. - Resolved minor bugs in the source code related to functionality and UI components. - Improved code stability and UI consistency.
- Loading branch information
Showing
8 changed files
with
174 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,68 @@ | ||
import type { Metadata } from "next"; | ||
import { Inter } from "next/font/google"; | ||
import "./globals.css"; | ||
import type { Metadata } from 'next' | ||
import { Inter } from 'next/font/google' | ||
import './globals.css' | ||
|
||
const inter = Inter({ subsets: ["latin"] }); | ||
const inter = Inter({ subsets: ['latin'] }) | ||
|
||
export const metadata: Metadata = { | ||
title: "Create Next App", | ||
description: "Generated by create next app", | ||
}; | ||
title: 'React Interactive Paycard', | ||
description: 'React Interactive Pay Card for ReactJS, NextJS App Router', | ||
keywords: [ | ||
'react', | ||
'reactjs', | ||
'nextjs', | ||
'form', | ||
'credit', | ||
'credit-card', | ||
'animation', | ||
'typescript', | ||
'react-interactive-paycard', | ||
'react-animation', | ||
'react-css-transition-group', | ||
'react-credit-card', | ||
'react-animated-css', | ||
], | ||
authors: [ | ||
{ | ||
name: 'Vo Ngoc Quang Minh', | ||
url: 'https://github.com/MinhOmega', | ||
}, | ||
], | ||
openGraph: { | ||
title: 'React Interactive Paycard', | ||
description: 'React Interactive Pay Card for ReactJS, NextJS App Router', | ||
url: 'https://github.com/MinhOmega/react-interactive-paycard#readme', | ||
siteName: 'React Interactive Paycard', | ||
images: [ | ||
{ | ||
url: '', // TODO | ||
width: 800, | ||
height: 600, | ||
alt: 'React Interactive Paycard', | ||
}, | ||
], | ||
locale: 'en_US', | ||
type: 'website', | ||
}, | ||
twitter: { | ||
card: 'summary_large_image', | ||
title: 'React Interactive Paycard', | ||
description: 'React Interactive Pay Card for ReactJS, NextJS App Router', | ||
images: [''], // TODO | ||
}, | ||
icons: { | ||
icon: '/favicon.ico', | ||
}, | ||
} | ||
|
||
export default function RootLayout({ | ||
children, | ||
}: Readonly<{ | ||
children: React.ReactNode; | ||
children: React.ReactNode | ||
}>) { | ||
return ( | ||
<html lang="en"> | ||
<body className={inter.className}>{children}</body> | ||
</html> | ||
); | ||
) | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.