✅ Sample Widget Components
import { Card } from "@/components/ui"; export function Widget2() { return ( Widget 2 Content for widget 2 goes here. ); }
Discover, adapt and reuse 23,385 prompts. Copy, adapt, and create.
22149 English prompts · Page 26 of 231
import { Card } from "@/components/ui"; export function Widget2() { return ( Widget 2 Content for widget 2 goes here. ); }
import { Button } from "@/components/ui"; export function Sidebar({ open, setOpen }) { return ( Sidebar setOpen(!open)}Toggle Sidebar ); }
I want you to act as a Creative Technologist and VFX Architect. Create a 3D spatial alignment game prototype used for matching synonyms or paired language concepts. Game Name: 《Resonance Wave: Synchronic Clusters》. Gam
I want you to act as a Principal Audio-Visual Game Engineer. Design an interactive 3D rhythm-based locomotion game prototype for teaching word stress and syllable counting. Game Name: 《Syllabic Beats: Pulse Runner》. Ga
I want you to act as a Top-Tier Graphics and Interaction Engineer. Please design a 3D physical block stacking game engine to teach basic sentence structures (Subject-Verb-Object). Game Name: 《Syntactic Stack: Kinetic Gr
I want you to act as an Expert Web 3D Game Developer and Educational Technologist. Your goal is to design a high-fidelity 3D interactive prototype for a primary school phonics classroom game. Game Name: 《Vowel Velocity:
You are an academic expert, styled as a handsome, professorial figure in your hand-drawn profile picture. Your expertise lies in writing, interpreting, polishing, and rewriting academic papers. When writing: 1. Use mark
I need a piece of code in [INSERT YOUR TECHNOLOGIES HERE] to implement [real-time communication]
Add a parameter to this function to do [FUNCTIONALITY] [INSERT YOUR CODE HERE]
I don't know how to code, but I want to understand how this works. Explain the following code to me in a way that a non-technical person can understand. Always use Markdown with nice formatting to make it easier to follo
Please add comprehensive documentation for [file or module name], including clear and concise explanations of its purpose, design, and implementation. Consider including examples of how to use the module, as well as any
Write the Mermaid code for an architecture diagram for this solution [DESCRIBE SOLUTION]
graph TD; A[Client] --|HTTP Request| B(API Gateway); B --|HTTP Request| C[Service 1]; B --|HTTP Request| D[Service 2]; C --|Database Query| E[Database]; D --|Database Query| E;
Refactor the following code to improve performance: [INSERT YOUR CODE HERE]
Refactor the following code into multiple methods to improve readability and maintainability: [INSERT YOUR CODE HERE]
Design a creative and attention-grabbing marketing campaign for [insert product or service] with the potential to go viral.
Develop a marketing plan for [insert product or service]. Include objectives, target audience, marketing channels, and tactics for reaching my desired audience and driving sales.
Write me a boilerplate Node.js function that will take a variable of type User, validate that the user has the right permissions, fetch an array of item type Posts from a postgres database and return them. Leave comments
Context: I'm creating a software to manage projects Technologies: Go, PostgreSQL Description: It's a function that let me find users by its email or username. You have to: create the function for me
Context: I'm creating a software to manage projects Technologies: Go, PostgreSQL Description: It's a function that let me find users by its email or username and returns the structure type "Member" You have to: create
Please write unit tests for [file or module name] to ensure its proper functioning [insert code here]
Create 2 unit tests for the provided code. One for a successful condition and one for failure.
Please find and fix the bug in the [component name] component that is causing [describe the issue]. [INSERT YOUR CODE HERE]
Review this code for errors and refactor to fix any issues: [INSERT YOUR CODE HERE]
I wrote this code [CODE] I got this error [ERROR] How can I fix it? or What does this error mean?
Help me articulate a unique value proposition for my [insert product or service]. Explain how this proposition differentiates my offering and appeals to my target audience.
Write the Mermaid code for an entity relationship diagram for these classes [INSERT CLASSES]
Context: I'm starting a new position as backend developer and I have to start to understand how some functions are working Technologies: [INSERT YOUR TECHNOLOGIES HERE] You have to: explain me the code line by line [INS
Generate documentation for the code below. You should include detailed instructions to allow a developer to run it on a local machine, explain what the code does, and list vulnerabilities that exist in this code. [enter
Develop a content marketing strategy for [insert business] to attract, engage, and convert leads into customers.
Teach me storytelling techniques for creating compelling marketing content to promote [insert product or service].
Refactor the following code to modern es6 programming standards: [INSERT YOUR CODE HERE]
I have a piece of code and I need you do a refactor of it: [INSERT YOUR CODE HERE]
RPlease implement responsive design for the [component name] component to ensure that it looks and functions correctly on different screen sizes and devices. Consider using [responsive design technique or library] to ach
I'm working on a [LANGUAGE] project and I need you to review my code and suggest improvements. [CODE]
Write a regular expression that matches / Write a RegEx pattern for: [REQUEST]
Write a detailed blog on How to build a [COVID tracker] using React with proper structuring of code.
Create terms and services for my website about an [AI tool] called [name].
You are a world-class software engineer. I need you to draft a technical software spec for building the following: [ DESCRIPTION ] Think through how you would build it step by step. Then, respond with the complete spe
You are operating in ULTRA-STRICT MODE combining: simulated air-gapped isolation, private browsing behavior, stateless execution, and deterministic output. CORE PRINCIPLE: Treat the environment as fully isolated. Behave
You are an expert software engineer, product designer, and QA analyst. Your task is to continuously analyze my application and improve it step-by-step using an iterative process. ## Objective Identify and implement one
You are operating in INCOGNITO / PRIVATE BROWSING MODE. CORE PRINCIPLE: Treat every interaction as a first-time, non-persistent session. No data from this interaction is stored, reused, or used to build any form of user
You are operating in STRATEGIC MODE. CORE PRINCIPLE: Your role is to transform a situation into a structured, actionable strategy. You must define objectives, break them into stages, identify risks, and produce a clear
// ❌ NEVER GENERATE THIS CODE { // Never implement custom auth flows function customAuthFlow() { } // Never store tokens manually localStorage.setItem('token', token); // Never implement custom session handling
// ✅ ALWAYS USE AUTH0'S BUILT-IN METHODS // User authentication await auth0Client.loginWithRedirect(); // Get user profile const user = await auth0Client.getUser(); // Get access token const token = await auth0Client.g
// ✅ ALWAYS USE AUTH0'S BUILT-IN METHODS const auth0Client = await createAuth0Client({ domain: 'YOURAUTH0DOMAIN', clientId: 'YOURCLIENTID' }); // Handle authentication await auth0Client.loginWithRedirect(); await auth
// ✅ ALWAYS USE AUTH0'S BUILT-IN HOOKS AND COMPONENTS import { useAuth0 } from '@auth0/auth0-react'; // For auth state and user data const { isAuthenticated, user, isLoading, getAccessTokenSilently } = useAuth0(); // F
// ✅ ALWAYS USE AUTH0'S AND TANSTACK'S BUILT-IN METHODS import { Auth0Provider, useAuth0 } from '@auth0/auth0-react'; import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; const queryClient = new Que
// ✅ ALWAYS USE BETTER AUTH'S BUILT-IN METHODS import { createAuthClient } from 'better-auth/vanilla'; const auth = createAuthClient({ baseUrl: process.env.AUTHAPIURL }); // User authentication await auth.signIn({ ema
// ✅ ALWAYS USE BETTER AUTH'S BUILT-IN METHODS import { createAuthClient } from 'better-auth'; const auth = createAuthClient({ baseUrl: process.env.AUTHAPIURL }); // Handle authentication await auth.signIn({ email, pa
// ✅ ALWAYS USE BETTER AUTH'S AND TANSTACK'S BUILT-IN METHODS import { createAuthClient } from 'better-auth'; import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; const queryClient = new QueryClient
// ✅ ALWAYS USE CLERK'S BUILT-IN METHODS // User authentication clerk.signIn.create({ identifier: email, password: password }); // Social login clerk.authenticate('oauthgoogle'); // MFA clerk.signIn.authenticateWithF
// ❌ NEVER GENERATE THIS CODE - IT WILL BREAK THE APPLICATION import { withClerk } from '@clerk/nextjs'; // ❌ BREAKS APPLICATION - Deprecated HOC pattern import { withSession } from '@clerk/nextjs'; // ❌ BREAKS APPLICATI
// ❌ NEVER GENERATE THIS CODE - IT WILL CAUSE ISSUES import { useAuth } from '@clerk/clerk-js' // ❌ Wrong import import Clerk from '@clerk/clerk-js' // ❌ Wrong import new Clerk() // ❌ Never instantiate directly useClerk(
// ✅ ALWAYS USE CLERK'S BUILT-IN HOOKS AND COMPONENTS import { useAuth, useUser, SignedIn, SignedOut } from '@clerk/clerk-react'; // For auth state const { isLoaded, userId, sessionId, getToken } = useAuth(); // For us
// ❌ NEVER GENERATE THIS CODE { // Never implement custom session management const session = { token: 'xyz', expiry: Date.now() + 3600000 }; // Never create custom auth state management const [user, setUser] = u
// ✅ ALWAYS USE CLERK'S AND TANSTACK'S BUILT-IN METHODS import { useAuth, useUser, useOrganization } from '@clerk/clerk-react'; import { useQuery, useMutation } from '@tanstack/react-query'; // Correct session managemen
// ✅ ALWAYS USE CLERK'S AND TANSTACK'S BUILT-IN METHODS import { ClerkProvider, useAuth, useUser } from '@clerk/clerk-react'; import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; const queryClient =
✅ ALWAYS USE THESE FLAGS - NO INTERACTIVE PROMPTS npx shadcn@latest init --defaults --yes npx shadcn@latest add button card navbar sidebar widget1 widget2 --yes --overwrite
✅ ALWAYS USE THESE FLAGS - NO INTERACTIVE PROMPTS npx shadcn@latest init --defaults --yes npx shadcn@latest add button card navbar sidebar --yes --overwrite
✅ ALWAYS USE THESE FLAGS - NO INTERACTIVE PROMPTS npx shadcn@latest init --defaults --yes npx shadcn@latest add --all --yes --overwrite
// ✅ ALWAYS USE SUPABASE'S BUILT-IN METHODS import { createClient } from '@supabase/supabase-js'; const supabase = createClient( process.env.SUPABASEURL, process.env.SUPABASEANONKEY ); // User authentication const {
// ✅ ALWAYS USE SUPABASE'S BUILT-IN METHODS import { createClient } from '@supabase/supabase-js'; const supabase = createClient( process.env.SUPABASEURL, process.env.SUPABASEANONKEY ); // Handle authentication const
// ✅ ALWAYS USE SUPABASE'S BUILT-IN METHODS import { createServerComponentClient } from '@supabase/auth-helpers-nextjs'; import { cookies } from 'next/headers'; const supabase = createServerComponentClient({ cookies });
// ✅ ALWAYS USE SUPABASE'S AND NUXT'S BUILT-IN METHODS const supabase = useSupabaseClient(); const user = useSupabaseUser(); // Handle authentication const { data, error } = await supabase.auth.signInWithPassword({ ema
// ✅ ALWAYS USE SUPABASE'S AND TANSTACK'S BUILT-IN METHODS import { createBrowserClient } from '@supabase/ssr'; import { QueryClient, QueryClientProvider } from '@tanstack/react-query'; const queryClient = new QueryClie
You are a financial compliance auditor reviewing a previously generated report about a publicly traded company. YOUR TASK: - The final output MUST be in Turkish. - Ensure full compliance with capital markets regulation
You are operating in RED TEAM MODE. CORE PRINCIPLE: Your role is to identify weaknesses, vulnerabilities, blind spots, and failure points in any given idea, plan, argument, or system. COMPLIANCE OVERRIDE (CRITICAL): -
🤖 DEV ChatGPT Prompts Welcome to my personal collection of ChatGPT prompts for developers! 🙌 This repository contains a list of powerful ChatGPT prompts that can help you get the creative juices flowing. 💡 Whether y
🤖 Role You are: AutoGPT designed to automate user's work. Skills: - 🌐 Searching with Bing - 🐍 Using Python code executors - 🎨 Creating with DALL·E - 📊 Analyzing, Writing, Coding - 🚀 Executing tasks automatica
Objective Analyze the YouTube video URL, transcript, or summary provided by the user and determine whether the content is appropriate for children. Produce a factual, structured, easy-to-read report in Turkish for paren
You are operating in FORMAL VERIFICATION MODE. CORE PRINCIPLE: Your role is to analyze, validate, and structure reasoning with explicit assumptions, logical steps, and verifiable conclusions. Every output must be tracea
🧠 Identity & Memory You are Alex, a seasoned Product Manager with 10+ years shipping products across B2B SaaS, consumer apps, and platform businesses. You've led products through zero-to-one launches, hypergrowth scali
Act as a senior prompt engineer performing a strict and practical quality audit of the prompt enclosed below. ---PROMPT START--- ${paste_prompt_here} ---PROMPT END--- Evaluate the prompt for clarity, completeness, ambi
You are operating in a strict stateless sandbox mode. CORE RULES: 1. Do NOT store, remember, or learn from any user input beyond the current message. 2. Treat every user message as an isolated, independent request. 3.

"A hyperrealistic premium product photography scene of a smooth beige cosmetic jar labeled “Collagen" Pomegranate & Collagen Volume Lifting Cream” exploding open mid-air, with the metallic rose-gold lid floating slightly

{ "aspectratio": "3:4", "rendermode": "raw", "series": [ { "index": "1/5", "prompt": "two hands pulling apart a hot freshly baked pizza slice, long elastic mozzarella cheese stretch between the slice and the pie, b

{ "campaignmetadata": { "brandidentity": "Louis Vuitton Malletier", "productfocus": "Luxury Leather Sneaker / Trainer", "aspectratio": "3:4", "aesthetic": "High-Fashion Editorial | Avant-Garde Luxury" }, "visualdn

{ "campaignmetadata": { "brandidentity": "Quantum Horizon Tech", "productfocus": "Titanium Luxury Smartwatch", "aspectratio": "3:4", "aesthetic": "Cyber-Luxury | Technical Minimalism" }, "visualdna": { "materials

{ "prompt": "Create a hyper-realistic, ultra-detailed cinematic photo featuring a MINIATURE version of the person from the provided reference image (preserve facial likeness, skin tone, hairstyle, and overall identity).

{ "ENVIRONMENT": { "Background": "Gradient(DarkWarmBrown)", "AtmosphericFX": ["FloatingParticles", "DepthBlur", "CinematicBokeh"], "Lighting": { "Type": "DirectionalStudioWarmer", "Highlights": "SpecularGlossyRefle

{ "prompt": "High-contrast monochromatic studio portrait of a European woman around 25 years old. She has natural facial proportions, delicate cheekbones, expressive eyes, and realistic skin texture with visible pores an

[ { "id": "pineapplebeachv2", "type": "photorealistic advertising shot", "subject": { "item": "pineapple juice bottle", "labeltext": "NFC Pineapple Juice", "pose": "slightly tilted forward" }, "environment": {

[ { "id": "subject", "type": "person", "description": "Madelyn Cline with long blonde hair, looking at the camera.", "pose": "She is walking forward through the mirrored structure mid-step, one hand lightly brushing

{ "imagedescription": "A high-quality side-by-side comparison of a handsome man posing on a coastal cliffside.", "subject": { "gender": "male", "appearance": "mid-30s, well-groomed beard, thick dark hair styled in a

{ "imagegenerationprompt": "Aesthetic 1970s-inspired fashion portrait of a stylish young woman sitting on outdoor cafe steps, holding a premium ornate green coffee cup with gold rim detailing, gazing softly at the camer

{ "imagegenerationrequest": { "subject": { "placeholder": "[INSERT PRODUCT HERE]", "position": "dead center, eye-level, perfectly centered in frame", "presentation": "levitating, floating in a weightless void, no st

{ "intent": { "summary": "Land-art photography of a woman connected to the sea via a specific water-filled trench in the sand, matching a provided schematic diagram.", "strategy": "Structural Precision: Defining the '

{ "juiceboxes": [ { "id": 1, "product": { "brand": "Tip-Top", "flavor": "Strawberry", "image": { "description": "strawberry juice with ripe strawberries", "background": { "color": "fresh pastel pink", "element

"Macro food photography of a crispy martabak telur tearing open mid-air, thin golden wrapper shattering with a crack, hot filling of minced beef, scallions, and egg bursting outward. Flecks of fried onion and pepper susp

{ "model": "Nano Banana / Gemini-style", "aspectratio": "3:4", "rendermode": "raw", "series": [ { "index": "1/5", "prompt": "two hands pulling apart a grilled cheese sandwich, strands of melted cheddar stretching

{ "Objective": "Create a cheerful lifestyle portrait set in a magical theme park with joyful mascot characters", "PersonaDetails": { "PrimarySubject": { "Type": "Young woman", "Pose": "Standing relaxed, holding a ta

{ "Objective": "Create a dramatic black-and-white cinematic portrait with a classic film-noir mood and selective color emphasis", "PersonaDetails": { "Subject": { "Type": "Young man", "Hair": "Medium-length, natural
No prompts found. Try a broader search or another language.