diff --git a/web/app/lib/utils/seo.ts b/web/app/lib/utils/seo.ts index 1546310e..f1a27d5e 100644 --- a/web/app/lib/utils/seo.ts +++ b/web/app/lib/utils/seo.ts @@ -15,8 +15,8 @@ export const seo = ({ { name: "keywords", content: keywords }, { name: "twitter:title", content: title }, { name: "twitter:description", content: description }, - { name: "twitter:creator", content: "@tannerlinsley" }, - { name: "twitter:site", content: "@tannerlinsley" }, + { name: "twitter:creator", content: "@LearnAnything_" }, + { name: "twitter:site", content: "@LearnAnything_" }, { name: "og:type", content: "website" }, { name: "og:title", content: title }, { name: "og:description", content: description }, diff --git a/web/app/routes/__root.tsx b/web/app/routes/__root.tsx index fa07330c..6540dc7d 100644 --- a/web/app/routes/__root.tsx +++ b/web/app/routes/__root.tsx @@ -17,6 +17,7 @@ import { import * as React from "react" import { DefaultCatchBoundary } from "~/components/DefaultCatchBoundary.js" import { NotFound } from "~/components/NotFound.js" +import { seo } from "~/lib/utils/seo" import appCss from "~/styles/app.css?url" export const TanStackRouterDevtools = @@ -55,6 +56,13 @@ export const Route = createRootRouteWithContext<{ name: "viewport", content: "width=device-width, initial-scale=1", }, + ...seo({ + title: "Learn Anything", + description: + "Discover and learn about any topic with Learn-Anything. Our free, comprehensive platform connects you to the best resources for every subject. Start learning today!", + keywords: + "learn anything, online learning, free education, educational resources, self-study, knowledge discovery, topic exploration, skill development, lifelong learning", + }), ], links: () => [ { rel: "stylesheet", href: appCss },