Update site info for publish
Edited UI in Lovable Co-authored-by: renee-png <262607627+renee-png@users.noreply.github.com>
This commit is contained in:
co-authored by
renee-png
parent
dbe630339d
commit
294ce7946e
+21
-15
@@ -1,16 +1,15 @@
|
||||
import { Outlet, createRootRoute, HeadContent, Scripts, Link } from "@tanstack/react-router";
|
||||
import { Toaster } from "@/components/ui/sonner";
|
||||
import { AuthProvider } from "@/lib/auth";
|
||||
import { Outlet, Link, createRootRoute, HeadContent, Scripts } from "@tanstack/react-router";
|
||||
|
||||
import appCss from "../styles.css?url";
|
||||
|
||||
function NotFoundComponent() {
|
||||
return (
|
||||
<div className="flex min-h-screen items-center justify-center bg-background px-4">
|
||||
<div className="max-w-md text-center">
|
||||
<h1 className="text-7xl font-serif text-foreground">404</h1>
|
||||
<h1 className="text-7xl font-bold text-foreground">404</h1>
|
||||
<h2 className="mt-4 text-xl font-semibold text-foreground">Page not found</h2>
|
||||
<p className="mt-2 text-sm text-muted-foreground">
|
||||
The page you're looking for doesn't exist.
|
||||
The page you're looking for doesn't exist or has been moved.
|
||||
</p>
|
||||
<div className="mt-6">
|
||||
<Link
|
||||
@@ -30,11 +29,23 @@ export const Route = createRootRoute({
|
||||
meta: [
|
||||
{ charSet: "utf-8" },
|
||||
{ name: "viewport", content: "width=device-width, initial-scale=1" },
|
||||
{ title: "Counsel — Law Firm Management" },
|
||||
{ name: "description", content: "Secure case, client, document, time and billing management for law firms." },
|
||||
{ name: "robots", content: "noindex, nofollow" },
|
||||
{ title: "Stage Law Firm, PLLC | Law Firm Suite" },
|
||||
{ name: "description", content: "HOA Case Hub is a secure, password-protected legal case management system for law firms." },
|
||||
{ name: "author", content: "Lovable" },
|
||||
{ property: "og:title", content: "Stage Law Firm, PLLC | Law Firm Suite" },
|
||||
{ property: "og:description", content: "HOA Case Hub is a secure, password-protected legal case management system for law firms." },
|
||||
{ property: "og:type", content: "website" },
|
||||
{ name: "twitter:card", content: "summary" },
|
||||
{ name: "twitter:site", content: "@Lovable" },
|
||||
{ name: "twitter:title", content: "Stage Law Firm, PLLC | Law Firm Suite" },
|
||||
{ name: "twitter:description", content: "HOA Case Hub is a secure, password-protected legal case management system for law firms." },
|
||||
],
|
||||
links: [
|
||||
{
|
||||
rel: "stylesheet",
|
||||
href: appCss,
|
||||
},
|
||||
],
|
||||
links: [{ rel: "stylesheet", href: appCss }],
|
||||
}),
|
||||
shellComponent: RootShell,
|
||||
component: RootComponent,
|
||||
@@ -56,10 +67,5 @@ function RootShell({ children }: { children: React.ReactNode }) {
|
||||
}
|
||||
|
||||
function RootComponent() {
|
||||
return (
|
||||
<AuthProvider>
|
||||
<Outlet />
|
||||
<Toaster richColors position="top-right" />
|
||||
</AuthProvider>
|
||||
);
|
||||
return <Outlet />;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user