Skip to content

Commit

Permalink
chore(create-next-app): update tw-empty templates
Browse files Browse the repository at this point in the history
  • Loading branch information
samcx committed May 9, 2024
1 parent 51bb81b commit abb6fcc
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import "./globals.css";

export const metadata = {
title: "Create Next App",
description: "Generated by create next app",
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { Metadata } from "next";
import "./globals.css";

export const metadata: Metadata = {
title: "Create Next App",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import "@/styles/globals.css";

export default function App({ Component, pageProps }) {
return <Component {...pageProps} />;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { AppProps } from "next/app";
import "@/styles/globals.css";

export default function App({ Component, pageProps }: AppProps) {
return <Component {...pageProps} />;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

0 comments on commit abb6fcc

Please sign in to comment.