Skip to content
Merged
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
14 changes: 7 additions & 7 deletions public/llms.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ buildml is an interactive ML education platform where users solve AI/ML coding c

## Pages

- [Home](https://buildml.website): Landing page introducing the platform and its mission.
- [Practice](https://buildml.website/practice): Browse all problem sets (NumPy, Neural Networks, etc.) and start solving challenges.
- [Leaderboard](https://buildml.website/leaderboard): Ranked community leaderboard based on points earned from solved challenges.
- [About](https://buildml.website/about): Mission, philosophy, FAQ, and team info.
- [Sponsor](https://buildml.website/sponsor): Support the project.
- [Sign In](https://buildml.website/signin): Google OAuth authentication to track progress and save solutions.
- [Home](https://www.buildml.website): Landing page introducing the platform and its mission.
- [Practice](https://www.buildml.website/practice): Browse all problem sets (NumPy, Neural Networks, etc.) and start solving challenges.
- [Leaderboard](https://www.buildml.website/leaderboard): Ranked community leaderboard based on points earned from solved challenges.
- [About](https://www.buildml.website/about): Mission, philosophy, FAQ, and team info.
- [Sponsor](https://www.buildml.website/sponsor): Support the project.
- [Sign In](https://www.buildml.website/signin): Google OAuth authentication to track progress and save solutions.

## How It Works

Expand All @@ -35,4 +35,4 @@ The platform uses tRPC for its API layer. Key endpoints handle:

## Optional

- [Sitemap](https://buildml.website/sitemap.xml)
- [Sitemap](https://www.buildml.website/sitemap.xml)
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ export default function RootLayout({
suppressHydrationWarning
>
<head>
<link href="https://buildml.website" rel="canonical" />
<link href="https://www.buildml.website" rel="canonical" />
<meta content="#0C0B09" name="theme-color" />
<meta content="yes" name="apple-mobile-web-app-capable" />
<meta
Expand Down
2 changes: 1 addition & 1 deletion src/app/robots.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ export default function robots(): MetadataRoute.Robots {
disallow: ["/api/", "/practice/*/edit"],
},
],
sitemap: "https://buildml.website/sitemap.xml",
sitemap: "https://www.buildml.website/sitemap.xml",
};
}
2 changes: 1 addition & 1 deletion src/app/sitemap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ type ProblemSet = {
};

export default async function sitemap(): Promise<MetadataRoute.Sitemap> {
const baseUrl = "https://buildml.website";
const baseUrl = "https://www.buildml.website";

// Static pages
const staticPages: MetadataRoute.Sitemap = [
Expand Down
2 changes: 1 addition & 1 deletion src/lib/seo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export const siteConfig = {
name: "buildml",
description:
"Master AI/ML by implementing research papers from scratch. Practice coding challenges, understand algorithms, and build real skills through hands-on implementation.",
url: "https://buildml.website",
url: "https://www.buildml.website",
ogImage: "/og.png",
creator: "praash",
keywords: [
Expand Down