This file contains hidden or 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
NEXT_PUBLIC_FIREBASE_API_KEY=your_api_key | |
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN=your_api_key | |
NEXT_PUBLIC_FIREBASE_PROJECT_ID=your_api_key | |
NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET=your_api_key | |
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID=your_api_key | |
NEXT_PUBLIC_FIREBASE_APP_ID=your_api_key | |
This file contains hidden or 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
------------------------------------------------------------------------------------------------------------------------ | |
Google Ai Studio Scripts | |
/* | |
* Install the Generative AI SDK | |
* | |
* $ npm install @google/generative-ai | |
* | |
* See the getting started guide for more information | |
* https://ai.google.dev/gemini-api/docs/get-started/node |
This file contains hidden or 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
Source Link : https://themeselection.com/?ref=55 | |
generator client { | |
provider = "prisma-client-js" | |
} | |
datasource db { | |
provider = "mongodb" | |
url = env("DATABASE_URL") | |
relationMode = "prisma" |
This file contains hidden or 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 is your Prisma schema file, | |
// learn more about it in the docs: https://pris.ly/d/prisma-schema | |
// Looking for ways to speed up your queries, or scale easily with your serverless or edge functions? | |
// Try Prisma Accelerate: https://pris.ly/cli/accelerate-init | |
generator client { | |
provider = "prisma-client-js" | |
} |
This file contains hidden or 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
Firebase confif ENV variables | |
---------------------------------------------------------------------------------------------------------------------------- | |
NEXT_PUBLIC_FIREBASE_API_KEY= | |
NEXT_PUBLIC_FIREBASE_AUTH_DOMAIN= | |
NEXT_PUBLIC_FIREBASE_PROJECT_ID= | |
NEXT_PUBLIC_FIREBASE_STORAGE_BUCKET= | |
NEXT_PUBLIC_FIREBASE_MESSAGING_SENDER_ID= | |
NEXT_PUBLIC_FIREBASE_APP_ID= | |
const firebaseConfig = { |
This file contains hidden or 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
const prompt = ` | |
As an experienced prompt engineer, generate a JSON array containing 5 technical interview questions along with detailed answers based on the following job information. Each object in the array should have the fields "question" and "answer", formatted as follows: | |
[ | |
{ "question": "<Question text>", "answer": "<Answer text>" }, | |
... | |
] | |
Job Information: | |
- Job Position: ${data?.position} |
This file contains hidden or 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
hero.tsx | |
--------------------------------------------------------------------------------------------------------------------- | |
"use client"; | |
import React, { useRef } from "react"; | |
import { Container } from "@/components/container"; | |
import { GenerateButton } from "../generate-button"; | |
import Link from "next/link"; | |
import starsBg from "@/assets/stars.png"; |
OlderNewer