Chapter 2 - add global CSS styles with tailwind to root layout
This commit is contained in:
@@ -1,3 +1,5 @@
|
|||||||
|
import '@/app/ui/global.css';
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: {
|
}: {
|
||||||
|
|||||||
@@ -10,6 +10,7 @@ export default function Page() {
|
|||||||
</div>
|
</div>
|
||||||
<div className="mt-4 flex grow flex-col gap-4 md:flex-row">
|
<div className="mt-4 flex grow flex-col gap-4 md:flex-row">
|
||||||
<div className="flex flex-col justify-center gap-6 rounded-lg bg-gray-50 px-6 py-10 md:w-2/5 md:px-20">
|
<div className="flex flex-col justify-center gap-6 rounded-lg bg-gray-50 px-6 py-10 md:w-2/5 md:px-20">
|
||||||
|
<div className="h-0 w-0 border-b-[30px] border-l-[20px] border-r-[20px] border-b-black border-l-transparent border-r-transparent"/>
|
||||||
<p className={`text-xl text-gray-800 md:text-3xl md:leading-normal`}>
|
<p className={`text-xl text-gray-800 md:text-3xl md:leading-normal`}>
|
||||||
<strong>Welcome to Acme.</strong> This is the example for the{' '}
|
<strong>Welcome to Acme.</strong> This is the example for the{' '}
|
||||||
<a href="https://nextjs.org/learn/" className="text-blue-500">
|
<a href="https://nextjs.org/learn/" className="text-blue-500">
|
||||||
@@ -21,7 +22,7 @@ export default function Page() {
|
|||||||
href="/login"
|
href="/login"
|
||||||
className="flex items-center gap-5 self-start rounded-lg bg-blue-500 px-6 py-3 text-sm font-medium text-white transition-colors hover:bg-blue-400 md:text-base"
|
className="flex items-center gap-5 self-start rounded-lg bg-blue-500 px-6 py-3 text-sm font-medium text-white transition-colors hover:bg-blue-400 md:text-base"
|
||||||
>
|
>
|
||||||
<span>Log in</span> <ArrowRightIcon className="w-5 md:w-6" />
|
<span>Log in</span> <ArrowRightIcon className="w-5 md:w-6"/>
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex items-center justify-center p-6 md:w-3/5 md:px-28 md:py-12">
|
<div className="flex items-center justify-center p-6 md:w-3/5 md:px-28 md:py-12">
|
||||||
|
|||||||
2
package-lock.json
generated
2
package-lock.json
generated
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "nextjs-dashboard2",
|
"name": "nextjs-dashboard",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
|
|||||||
Reference in New Issue
Block a user