├── .gitignore ├── README.md ├── craco.config.js ├── package.json ├── public ├── apple-touch-icon.png ├── favicon.ico ├── index.html ├── logo192.png ├── logo512.png ├── manifest.json └── meta.png ├── src ├── App.tsx ├── components │ └── Confetti.js ├── fonts │ ├── SegoeUI-Bold.woff │ ├── SegoeUI-Bold.woff2 │ ├── SegoeUI-BoldItalic.woff │ ├── SegoeUI-BoldItalic.woff2 │ ├── SegoeUI-Italic.woff │ ├── SegoeUI-Italic.woff2 │ ├── SegoeUI.woff │ ├── SegoeUI.woff2 │ └── stylesheet.css ├── index.css ├── index.tsx ├── pages │ ├── 404.tsx │ ├── Bday.tsx │ └── Home.tsx ├── react-app-env.d.ts ├── reportWebVitals.js └── setupTests.js ├── tailwind.config.js ├── tsconfig.json └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/README.md -------------------------------------------------------------------------------- /craco.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/craco.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/package.json -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/public/index.html -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/meta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/public/meta.png -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/components/Confetti.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/components/Confetti.js -------------------------------------------------------------------------------- /src/fonts/SegoeUI-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/fonts/SegoeUI-Bold.woff -------------------------------------------------------------------------------- /src/fonts/SegoeUI-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/fonts/SegoeUI-Bold.woff2 -------------------------------------------------------------------------------- /src/fonts/SegoeUI-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/fonts/SegoeUI-BoldItalic.woff -------------------------------------------------------------------------------- /src/fonts/SegoeUI-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/fonts/SegoeUI-BoldItalic.woff2 -------------------------------------------------------------------------------- /src/fonts/SegoeUI-Italic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/fonts/SegoeUI-Italic.woff -------------------------------------------------------------------------------- /src/fonts/SegoeUI-Italic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/fonts/SegoeUI-Italic.woff2 -------------------------------------------------------------------------------- /src/fonts/SegoeUI.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/fonts/SegoeUI.woff -------------------------------------------------------------------------------- /src/fonts/SegoeUI.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/fonts/SegoeUI.woff2 -------------------------------------------------------------------------------- /src/fonts/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/fonts/stylesheet.css -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/pages/404.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/pages/404.tsx -------------------------------------------------------------------------------- /src/pages/Bday.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/pages/Bday.tsx -------------------------------------------------------------------------------- /src/pages/Home.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/pages/Home.tsx -------------------------------------------------------------------------------- /src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/reportWebVitals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/reportWebVitals.js -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/src/setupTests.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cnrad/hbd-today/HEAD/yarn.lock --------------------------------------------------------------------------------