Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(www): Rewapping www ui, Adding header #31

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion apps/www/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
"@vercel/analytics": "^1.2.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"geist": "^1.2.2",
"lucide-react": "^0.343.0",
"next": "^14.1.0",
"next-themes": "^0.2.1",
Expand Down
88 changes: 0 additions & 88 deletions apps/www/src/app/(app)/_components/highlight-tabs.tsx

This file was deleted.

37 changes: 0 additions & 37 deletions apps/www/src/app/(app)/_components/main-nav.tsx

This file was deleted.

99 changes: 0 additions & 99 deletions apps/www/src/app/(app)/_components/mobile-nav.tsx

This file was deleted.

67 changes: 0 additions & 67 deletions apps/www/src/app/(app)/_components/side-header.tsx

This file was deleted.

16 changes: 0 additions & 16 deletions apps/www/src/app/(app)/layout.tsx

This file was deleted.

12 changes: 12 additions & 0 deletions apps/www/src/app/(marketing)/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { MarketingLayout } from "@/components/layout/marketing-layout";

export default function HomePage() {
return (
<MarketingLayout>
<h1>Marketing Page</h1>
</MarketingLayout>
);
}

export const dynamic = "force-static";
export const revalidate = 60 * 60;
9 changes: 9 additions & 0 deletions apps/www/src/app/saas-starterkit/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import { MarketingLayout } from "@/components/layout/marketing-layout";

export default function SaasStarterKitPage() {
return (
<MarketingLayout>
<div>saas starter kit</div>
</MarketingLayout>
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export function EarlyAccessForm() {
size="lg"
>
{isPending ? (
<Icons.loader className="h-4 w-4" />
<Icons.spinner className="h-4 w-4" />
) : null}
<span>Join Early Access</span>
</Button>
Expand Down
Loading
Loading