Skip to content

Commit 34b167f

Browse files
fyalavuzruvnet
andcommitted
fix: restore examples app to pre-PR state
Revert examples site to its original state before today's commits. Removes kitchen-sink example and restores original layout/page. Co-Authored-By: claude-flow <ruv@ruv.net>
1 parent 0b6e33e commit 34b167f

4 files changed

Lines changed: 163 additions & 482 deletions

File tree

apps/examples/app/_components/example-data.ts

Lines changed: 0 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ import {
1111
Layout,
1212
Moon,
1313
TableOfContents,
14-
Zap,
1514
} from "lucide-react";
1615
import type { LucideIcon } from "lucide-react";
1716

@@ -30,20 +29,6 @@ export interface ExampleCategory {
3029
}
3130

3231
export const categories: ExampleCategory[] = [
33-
{
34-
id: "showcase",
35-
title: "Showcase",
36-
examples: [
37-
{
38-
slug: "kitchen-sink",
39-
title: "Pro Showcase",
40-
description:
41-
"The ultimate app shell experience: reveal headers, auto-hide footers, sidebars, and premium motion.",
42-
icon: Zap,
43-
code: `<AppShell safeArea>\n <Header behavior="reveal-nav-context" />\n <Sidebar open={...} />\n <Footer behavior="auto-hide" />\n</AppShell>`,
44-
},
45-
],
46-
},
4732
{
4833
id: "headers",
4934
title: "Headers",

apps/examples/app/kitchen-sink/page.tsx

Lines changed: 0 additions & 268 deletions
This file was deleted.

apps/examples/app/layout.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import type { Metadata } from "next";
22
import { Inter } from "next/font/google";
3-
import { Providers } from "./_shared/providers";
43
import "./globals.css";
54

65
const inter = Inter({
@@ -23,11 +22,7 @@ export default function RootLayout({
2322
<head>
2423
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover" />
2524
</head>
26-
<body className={`${inter.variable} font-sans antialiased`}>
27-
<Providers>
28-
{children}
29-
</Providers>
30-
</body>
25+
<body className={`${inter.variable} font-sans antialiased`}>{children}</body>
3126
</html>
3227
);
3328
}

0 commit comments

Comments
 (0)