feat: implement @repo/brand package for centralized asset management and automated distribution to consuming apps

This commit is contained in:
Firman Ramdhani
2026-07-29 12:27:27 +07:00
parent 6c67fbc68e
commit fcea8f221b
15 changed files with 162 additions and 10 deletions
+10
View File
@@ -0,0 +1,10 @@
{
"name": "My Brand",
"description": "A short description of your brand or product.",
"tagline": "Building the future, one pixel at a time.",
"socialLinks": {
"twitter": "https://twitter.com/mybrand",
"github": "https://github.com/mybrand",
"website": "https://mybrand.com"
}
}
+3
View File
@@ -0,0 +1,3 @@
import brandInfo from './data/info.json';
export type BrandInfo = typeof brandInfo;