Skip to content

Commit

Permalink
chore: added Threejs & Nextjs frameworks (#1537)
Browse files Browse the repository at this point in the history
  • Loading branch information
k-deepak04 authored Aug 11, 2023
1 parent f018194 commit baac2e6
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 0 deletions.
2 changes: 2 additions & 0 deletions database/data.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ export const sidebarData: ISidebar[] = [
category: 'frontend',
subcategory: [
{ name: 'react js', url: '/react', resources: DB.react },
{ name: 'next js', url: '/next', resources: DB.next },
{ name: 'three js', url: '/three', resources: DB.three },
{ name: 'images', url: '/images', resources: DB.images },
{ name: 'fonts', url: '/fonts', resources: DB.fonts },
{ name: 'colors', url: '/colors', resources: DB.colors },
Expand Down
9 changes: 9 additions & 0 deletions database/frontend/next.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[
{
"name": "NextJS",
"description": "Used by some of the world's largest companies, Next.js enables you to create full-stack Web applications by extending the latest React features and integrating powerful Rust-based JavaScript tooling for the fastest builds.",
"url": "https://nextjs.org/",
"category": "frontend",
"subcategory": "next-js"
}
]
9 changes: 9 additions & 0 deletions database/frontend/three.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[
{
"name": "ThreeJS",
"description": "Three.js is the world's most popular JavaScript framework for displaying 3D content on the web. With three.js, you no longer need a fancy gaming PC console or download a special application to display photorealistic 3D graphics. All you need is a smartphone and a web browser.",
"url": "https://discoverthreejs.com/",
"category": "frontend",
"subcategory": "three-js"
}
]
2 changes: 2 additions & 0 deletions database/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ export { default as onlineCodeEditors } from './frontend/online-code-editors.jso
export { default as themesTemplates } from './frontend/themes-templates.json'
export { default as uiGenerators } from './frontend/ui-generators.json'
export { default as react } from './frontend/react.json'
export { default as next } from './frontend/next.json'
export { default as three } from './frontend/three.json'
export { default as videos } from './frontend/videos.json'
// backend
export { default as authentication } from './backend/authentication.json'
Expand Down
2 changes: 2 additions & 0 deletions types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,8 @@ export const subcategoryArray = [
'images',
'online-code-editors',
'react',
'next-js',
'three-js',
'themes-templates',
'ui-generators',
'videos',
Expand Down

1 comment on commit baac2e6

@vercel
Copy link

@vercel vercel bot commented on baac2e6 Aug 11, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.