-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#FEAT-016: template's features overview page (#79)
* Feat: add new link to features page and remove unused * Feat: add features overview with new badge * Doc: features of templates * Chore: update coming soon to new badge * Style: remove new badge
- Loading branch information
Showing
5 changed files
with
63 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,16 @@ | ||
import NewBadge from "../components/Layouts/Badges/NewBadge"; | ||
|
||
// eslint-disable-next-line import/no-anonymous-default-export | ||
export default { | ||
docs: "Documentation", | ||
"free-for-devs": "Free For Devs", | ||
features: { | ||
title: ( | ||
<div className="flex items-center w-full justify-between relative"> | ||
<p>Features Overview</p> | ||
<NewBadge /> | ||
</div> | ||
), | ||
}, | ||
release: "Release Notes", | ||
"free-for-devs": "Free For Devs", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,7 @@ | ||
import NewBadge from "../../components/Layouts/Badges/NewBadge"; | ||
|
||
/* eslint-disable import/no-anonymous-default-export */ | ||
export default { | ||
introduction: "Introduction", | ||
get_started: "Getting Started", | ||
installation: "Installation", | ||
template_structure: { | ||
title: ( | ||
<div className="flex items-center w-full justify-between relative"> | ||
<p>Template Structure</p> | ||
<NewBadge className="md:absolute md:-top-4 md:-right-14" /> | ||
</div> | ||
), | ||
}, | ||
template_structure: "Template Structure", | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# Template Core Features | ||
|
||
## Modern Development Stack | ||
- Built with React.js v19 for optimal performance and SEO | ||
- TypeScript support for enhanced code quality and type-safe | ||
- Tailwind and Shadcn for rapid, responsive styling | ||
|
||
## Developer Experience | ||
- Hot reloading for instant feedback | ||
- Pre-configured ESLint and Prettier | ||
- Automated testing setup with Vitest | ||
- Husky with Prettier pre-commit hooks: | ||
- Automatic code formatting on commit | ||
- Lint checks before commits | ||
- Consistent code style enforcement | ||
- Prevents commits with formatting issues | ||
|
||
## Performance Optimized | ||
- Automatic image optimization | ||
- Built-in code splitting | ||
- Server-side rendering capabilities | ||
- Optimized production builds | ||
|
||
## Built-in Components | ||
- Responsive navigation | ||
- Dark/Light mode toggle | ||
- SEO-friendly metadata handling | ||
- Loading states and error boundaries | ||
|
||
## Deployment Ready | ||
- Zero-config deployment and CI/CD on Vercel | ||
- Environment variable management | ||
- Production build optimization | ||
|
||
## Documentation | ||
- Comprehensive setup guide | ||
- Component documentation | ||
- Best practices and conventions | ||
- Customization examples |