Initial commit - WhyRating Hub

Simple hub page for WhyRating project resources:
- Brand Site link
- Templates Site link
- Outline Docs link

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Alejandro Gutiérrez
2026-02-02 00:33:12 +00:00
commit 54bdf937d8
15 changed files with 7023 additions and 0 deletions

5
src/app/providers.tsx Normal file
View File

@@ -0,0 +1,5 @@
'use client';
export function Providers({ children }: { children: React.ReactNode }) {
return <>{children}</>;
}