Skip to content

Commit

Permalink
Added Gen AI Quiz Application with Gemini LLM
Browse files Browse the repository at this point in the history
  • Loading branch information
J-B-Mugundh authored Oct 15, 2024
1 parent afd9f99 commit f6e2d64
Show file tree
Hide file tree
Showing 21 changed files with 5,940 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Next-JS-Projects/Advanced/Gen-AI-Quiz-Application/components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "tailwind.config.js",
"css": "src/app/globals.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils"
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/// <reference types="next" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {}

module.exports = nextConfig
Loading

0 comments on commit f6e2d64

Please sign in to comment.