├── .gitignore ├── LICENSE ├── README.md ├── backend ├── generate-static-pages.ts ├── index.ts ├── pre-render.ts └── pre-rendering-index.ts ├── eslint.config.js ├── frontend ├── components │ ├── avatar │ │ └── index.tsx │ ├── badge │ │ └── index.tsx │ ├── button │ │ └── index.tsx │ ├── card │ │ └── simple-card.tsx │ ├── checkbox │ │ └── index.tsx │ ├── dialog │ │ └── index.tsx │ ├── drawer │ │ └── index.tsx │ ├── dropdown-menu │ │ └── index.tsx │ ├── file-upload │ │ └── photo-upload.tsx │ ├── input │ │ ├── base-input.tsx │ │ └── input-with-icons.tsx │ ├── pill │ │ ├── base.tsx │ │ └── colorful.tsx │ ├── sidebar │ │ ├── navigation-groups.tsx │ │ ├── navigation-items.tsx │ │ └── sidebar-layouts.tsx │ ├── table │ │ └── index.tsx │ ├── tabs │ │ └── index.tsx │ ├── textarea │ │ └── base-textarea.tsx │ ├── toggle │ │ └── index.tsx │ └── tooltip │ │ └── index.tsx ├── data │ ├── inbox-messages.tsx │ └── website-statistics.tsx ├── icons │ ├── bell-icon.tsx │ ├── checkbox-icon.tsx │ ├── chevron-down-icon.tsx │ ├── chevron-right-icon.tsx │ ├── clipboard-icon.tsx │ ├── close-circle-icon.tsx │ ├── close-icon.tsx │ ├── confirm-icon.tsx │ ├── dashboard-icon.tsx │ ├── dollar-icon.tsx │ ├── dots-vertical-icon.tsx │ ├── double-chevrons-left-icon.tsx │ ├── double-chevrons-right-icon.tsx │ ├── download-icon.tsx │ ├── edit-icon.tsx │ ├── empty-avatar.tsx │ ├── eye-icon.tsx │ ├── eye-off-icon.tsx │ ├── file-icon.tsx │ ├── help-circle-icon.tsx │ ├── home-icon.tsx │ ├── inbox-icon.tsx │ ├── log-out-icon.tsx │ ├── logos │ │ ├── apple-logo.tsx │ │ ├── github-logo.tsx │ │ ├── google-logo.tsx │ │ └── product-logo.tsx │ ├── menu-icon.tsx │ ├── percentage-icon.tsx │ ├── plus-icon.tsx │ ├── search-icon.tsx │ ├── settings-icon.tsx │ └── star-icon.tsx ├── pages │ ├── dashboard.tsx │ ├── login.tsx │ └── settings.tsx ├── patterns │ ├── collapsible-primary-sidebar.tsx │ ├── email-sign-in.tsx │ ├── fixed-width-primary-sidebar-spa.tsx │ ├── fixed-width-primary-sidebar.tsx │ ├── layout-components.tsx │ ├── primary-sidebar-bottom-group.tsx │ ├── primary-sidebar-collapsed.tsx │ ├── primary-sidebar-create-button.tsx │ ├── primary-sidebar-heading.tsx │ ├── primary-sidebar-primary-group-spa.tsx │ ├── primary-sidebar-primary-group.tsx │ ├── primary-sidebar-secondary-group.tsx │ ├── settings-notifications-table.tsx │ ├── settings-profile-form.tsx │ ├── social-sign-in.tsx │ └── topbar-for-sidebar-content-layout.tsx └── utils │ ├── link.tsx │ ├── merge-classnames.tsx │ ├── update-title.tsx │ ├── use-client-router.tsx │ └── variations-components.tsx ├── index.html ├── package.json ├── postcss.config.js ├── src ├── App.tsx ├── index.css ├── index.html ├── main.tsx └── vite-env.d.ts ├── tailwind.config.js ├── tsconfig.json └── vite.config.ts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/README.md -------------------------------------------------------------------------------- /backend/generate-static-pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/backend/generate-static-pages.ts -------------------------------------------------------------------------------- /backend/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/backend/index.ts -------------------------------------------------------------------------------- /backend/pre-render.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/backend/pre-render.ts -------------------------------------------------------------------------------- /backend/pre-rendering-index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/backend/pre-rendering-index.ts -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/eslint.config.js -------------------------------------------------------------------------------- /frontend/components/avatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/avatar/index.tsx -------------------------------------------------------------------------------- /frontend/components/badge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/badge/index.tsx -------------------------------------------------------------------------------- /frontend/components/button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/button/index.tsx -------------------------------------------------------------------------------- /frontend/components/card/simple-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/card/simple-card.tsx -------------------------------------------------------------------------------- /frontend/components/checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/checkbox/index.tsx -------------------------------------------------------------------------------- /frontend/components/dialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/dialog/index.tsx -------------------------------------------------------------------------------- /frontend/components/drawer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/drawer/index.tsx -------------------------------------------------------------------------------- /frontend/components/dropdown-menu/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/dropdown-menu/index.tsx -------------------------------------------------------------------------------- /frontend/components/file-upload/photo-upload.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/file-upload/photo-upload.tsx -------------------------------------------------------------------------------- /frontend/components/input/base-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/input/base-input.tsx -------------------------------------------------------------------------------- /frontend/components/input/input-with-icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/input/input-with-icons.tsx -------------------------------------------------------------------------------- /frontend/components/pill/base.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/pill/base.tsx -------------------------------------------------------------------------------- /frontend/components/pill/colorful.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/pill/colorful.tsx -------------------------------------------------------------------------------- /frontend/components/sidebar/navigation-groups.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/sidebar/navigation-groups.tsx -------------------------------------------------------------------------------- /frontend/components/sidebar/navigation-items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/sidebar/navigation-items.tsx -------------------------------------------------------------------------------- /frontend/components/sidebar/sidebar-layouts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/sidebar/sidebar-layouts.tsx -------------------------------------------------------------------------------- /frontend/components/table/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/table/index.tsx -------------------------------------------------------------------------------- /frontend/components/tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/tabs/index.tsx -------------------------------------------------------------------------------- /frontend/components/textarea/base-textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/textarea/base-textarea.tsx -------------------------------------------------------------------------------- /frontend/components/toggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/toggle/index.tsx -------------------------------------------------------------------------------- /frontend/components/tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/components/tooltip/index.tsx -------------------------------------------------------------------------------- /frontend/data/inbox-messages.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/data/inbox-messages.tsx -------------------------------------------------------------------------------- /frontend/data/website-statistics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/data/website-statistics.tsx -------------------------------------------------------------------------------- /frontend/icons/bell-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/bell-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/checkbox-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/checkbox-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/chevron-down-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/chevron-down-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/chevron-right-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/chevron-right-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/clipboard-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/clipboard-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/close-circle-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/close-circle-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/close-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/close-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/confirm-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/confirm-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/dashboard-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/dashboard-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/dollar-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/dollar-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/dots-vertical-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/dots-vertical-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/double-chevrons-left-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/double-chevrons-left-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/double-chevrons-right-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/double-chevrons-right-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/download-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/download-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/edit-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/edit-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/empty-avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/empty-avatar.tsx -------------------------------------------------------------------------------- /frontend/icons/eye-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/eye-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/eye-off-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/eye-off-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/file-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/file-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/help-circle-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/help-circle-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/home-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/home-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/inbox-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/inbox-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/log-out-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/log-out-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/logos/apple-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/logos/apple-logo.tsx -------------------------------------------------------------------------------- /frontend/icons/logos/github-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/logos/github-logo.tsx -------------------------------------------------------------------------------- /frontend/icons/logos/google-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/logos/google-logo.tsx -------------------------------------------------------------------------------- /frontend/icons/logos/product-logo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/logos/product-logo.tsx -------------------------------------------------------------------------------- /frontend/icons/menu-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/menu-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/percentage-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/percentage-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/plus-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/plus-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/search-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/search-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/settings-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/settings-icon.tsx -------------------------------------------------------------------------------- /frontend/icons/star-icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/icons/star-icon.tsx -------------------------------------------------------------------------------- /frontend/pages/dashboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/pages/dashboard.tsx -------------------------------------------------------------------------------- /frontend/pages/login.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/pages/login.tsx -------------------------------------------------------------------------------- /frontend/pages/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/pages/settings.tsx -------------------------------------------------------------------------------- /frontend/patterns/collapsible-primary-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/patterns/collapsible-primary-sidebar.tsx -------------------------------------------------------------------------------- /frontend/patterns/email-sign-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/patterns/email-sign-in.tsx -------------------------------------------------------------------------------- /frontend/patterns/fixed-width-primary-sidebar-spa.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/patterns/fixed-width-primary-sidebar-spa.tsx -------------------------------------------------------------------------------- /frontend/patterns/fixed-width-primary-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/patterns/fixed-width-primary-sidebar.tsx -------------------------------------------------------------------------------- /frontend/patterns/layout-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/patterns/layout-components.tsx -------------------------------------------------------------------------------- /frontend/patterns/primary-sidebar-bottom-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/patterns/primary-sidebar-bottom-group.tsx -------------------------------------------------------------------------------- /frontend/patterns/primary-sidebar-collapsed.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/patterns/primary-sidebar-collapsed.tsx -------------------------------------------------------------------------------- /frontend/patterns/primary-sidebar-create-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/patterns/primary-sidebar-create-button.tsx -------------------------------------------------------------------------------- /frontend/patterns/primary-sidebar-heading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/patterns/primary-sidebar-heading.tsx -------------------------------------------------------------------------------- /frontend/patterns/primary-sidebar-primary-group-spa.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/patterns/primary-sidebar-primary-group-spa.tsx -------------------------------------------------------------------------------- /frontend/patterns/primary-sidebar-primary-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/patterns/primary-sidebar-primary-group.tsx -------------------------------------------------------------------------------- /frontend/patterns/primary-sidebar-secondary-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/patterns/primary-sidebar-secondary-group.tsx -------------------------------------------------------------------------------- /frontend/patterns/settings-notifications-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/patterns/settings-notifications-table.tsx -------------------------------------------------------------------------------- /frontend/patterns/settings-profile-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/patterns/settings-profile-form.tsx -------------------------------------------------------------------------------- /frontend/patterns/social-sign-in.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/patterns/social-sign-in.tsx -------------------------------------------------------------------------------- /frontend/patterns/topbar-for-sidebar-content-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/patterns/topbar-for-sidebar-content-layout.tsx -------------------------------------------------------------------------------- /frontend/utils/link.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/utils/link.tsx -------------------------------------------------------------------------------- /frontend/utils/merge-classnames.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/utils/merge-classnames.tsx -------------------------------------------------------------------------------- /frontend/utils/update-title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/utils/update-title.tsx -------------------------------------------------------------------------------- /frontend/utils/use-client-router.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/utils/use-client-router.tsx -------------------------------------------------------------------------------- /frontend/utils/variations-components.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/frontend/utils/variations-components.tsx -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/src/App.tsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/src/index.css -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/src/index.html -------------------------------------------------------------------------------- /src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/src/main.tsx -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/developerway/ssr-deep-dive/HEAD/vite.config.ts --------------------------------------------------------------------------------