← Back to search
45
Partial
Agentic Readiness Score
+25 llms.txt +20 ai-plugin missing +20 OpenAPI
Raise this score to 95+
We ship the 6-file GEO uplift as a pull request against your repo. Flat fee, turnaround under 72 hours.
Fix this for $199 →
other llms-txtai-plugin

Agentic Signals

📄
Found
🤖
Found
📖
OpenAPI Spec
Not found
🔗
Structured API
Not found
🛡
Not specified
🏷
Schema.org Markup
Not found
MCP Server
Not found

Embed this badge

Show off your agentic readiness — the badge auto-updates when your score changes.

Agentic Ready 45/100

            

llms.txt Content

# AOSSIE Webpage This repository is a high-performance webpage built on **Next.js 16 (App Router)**, **React 19**, and **Tailwind CSS v4**. It is pre-configured with **next-intl** for internationalization (i18n) and **next-themes** for semantic dark/light theme tokens. --- ## 📂 Project Architecture - **`src/app/[locale]/`**: Localized dynamic route group. All pages and layouts live here. - **`src/app/sitemap.ts`**: Dynamically generates localized sitemaps. - **`public/brand/`**: Repository branding folder containing the logo, favicon, and brand specifications (`Brand.md`). - **`src/config/languages.ts`**: Supported languages configuration list. - **`src/i18n/`**: Configurations for translation lookups and custom navigation helpers. - **`src/messages/`**: Directory containing translation catalogs (e.g., `en.json`, `hi.json`). - **`src/components/`**: Location for reusable, localized UI components. --- ## 🎨 Theme & Style System - Tailwind CSS v4 is configured with a class-based dark mode selector in `src/app/[locale]/globals.css`. - Semantic CSS variables (e.g. `--background`, `--foreground`) are bound to Tailwind variables in the `@theme` block. - **Guideline:** Avoid inline `dark:*` utility styles. Use semantic token classes like `bg-background-primary` and `text-foreground-primary`. --- ## 🌐 Dynamic Localization - All navigation must import `Link`, `useRouter`, or `usePathname` from local `src/i18n/navigation.ts`. - Page and Layout props `params` are Promises in Next.js 15/16 and must be awaited: ```typescript const { locale } = await params; ``` --- ## 📦 Build Commands - **Build:** `npm run build` - **Develop:** `npm run dev`