Skip to content

Commit 17f46dc

Browse files
committed
edit ctas
1 parent 5ceb766 commit 17f46dc

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

app/app/(auth)/login/page.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@ export default function LoginPage() {
1616
Platforms Starter Kit
1717
</h1>
1818
<p className="mt-2 text-center text-sm text-gray-600">
19-
Build multi-tenant applications with custom domains. <br /> Read the{" "}
19+
Build multi-tenant applications with custom domains. <br />
2020
<a
2121
className="font-medium text-black hover:text-gray-800"
22-
href="https://demo.vercel.pub/platforms-starter-kit"
22+
href="https://vercel.com/guides/nextjs-multi-tenant-application"
2323
rel="noreferrer"
2424
target="_blank"
2525
>
26-
blog post
26+
Read the guide.
2727
</a>
2828
</p>
2929

3030
<div className="mx-auto mt-4 w-11/12 max-w-xs sm:w-full">
3131
<Suspense
3232
fallback={
33-
<div className="h-10 w-full rounded-md border border-stone-200 bg-stone-100" />
33+
<div className="my-2 h-10 w-full rounded-md border border-stone-200 bg-stone-100" />
3434
}
3535
>
3636
<LoginButton />

components/nav.tsx

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,14 @@ import {
66
BarChart3,
77
Edit3,
88
Globe,
9+
Layout,
910
LayoutDashboard,
1011
Menu,
1112
Newspaper,
1213
Settings,
1314
} from "lucide-react";
1415
import { useParams, useSelectedLayoutSegments } from "next/navigation";
15-
import { ReactNode, useContext, useEffect, useMemo, useState } from "react";
16+
import { ReactNode, useEffect, useMemo, useState } from "react";
1617
import { getSiteFromPostId } from "@/lib/actions";
1718
import Image from "next/image";
1819
import { FileCode, Github } from "lucide-react";
@@ -28,6 +29,11 @@ const externalLinks = [
2829
href: "https://vercel.com/guides/nextjs-multi-tenant-application",
2930
icon: <FileCode width={18} />,
3031
},
32+
{
33+
name: "View demo site",
34+
href: "https://demo.vercel.pub",
35+
icon: <Layout width={18} />,
36+
},
3137
{
3238
name: "Deploy your own",
3339
href: "https://vercel.com/templates/next.js/platforms-starter-kit",

0 commit comments

Comments
 (0)