8 lines
335 B
TypeScript
8 lines
335 B
TypeScript
import { atom } from 'nanostores'
|
|
|
|
export const $websiteName = atom<string>('Dasig Solid')
|
|
export const $websiteDescription = atom<string>('A template for next level speed (Solid Version)')
|
|
export const $font = atom<string>('inter')
|
|
|
|
export const $yourName = atom<string>('Pat Alcala')
|
|
export const $copyRightYear = atom<number>(2025)
|