@appcorp/shadcn 1.0.10 → 1.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@appcorp/shadcn",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "scripts": {
5
5
  "build:next": "next build",
6
6
  "build:storybook": "storybook build -c .storybook -o .out",
package/app/layout.d.ts DELETED
@@ -1,7 +0,0 @@
1
- import React from "react";
2
- import type { Metadata } from "next";
3
- import "./globals.css";
4
- export declare const metadata: Metadata;
5
- export default function RootLayout({ children, }: Readonly<{
6
- children: React.ReactNode;
7
- }>): React.JSX.Element;
package/app/layout.js DELETED
@@ -1,18 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.metadata = void 0;
7
- exports.default = RootLayout;
8
- var react_1 = __importDefault(require("react"));
9
- require("./globals.css");
10
- exports.metadata = {
11
- title: "ShadCN/UI App",
12
- description: "Next.js app with ShadCN/UI components",
13
- };
14
- function RootLayout(_a) {
15
- var children = _a.children;
16
- return (react_1.default.createElement("html", { lang: "en" },
17
- react_1.default.createElement("body", null, children)));
18
- }
package/app/page.d.ts DELETED
@@ -1,2 +0,0 @@
1
- import React from "react";
2
- export default function Home(): React.JSX.Element;
package/app/page.js DELETED
@@ -1,16 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.default = Home;
7
- var react_1 = __importDefault(require("react"));
8
- function Home() {
9
- return (react_1.default.createElement("main", { className: "flex min-h-screen flex-col items-center justify-center p-24" },
10
- react_1.default.createElement("div", { className: "z-10 w-full max-w-5xl items-center justify-between font-mono text-sm" },
11
- react_1.default.createElement("h1", { className: "text-4xl font-bold text-center mb-8" }, "Welcome to Next.js with ShadCN/UI"),
12
- react_1.default.createElement("p", { className: "text-center text-muted-foreground mb-8" },
13
- "Get started by editing",
14
- " ",
15
- react_1.default.createElement("code", { className: "font-mono font-bold" }, "src/app/page.tsx")))));
16
- }