-
Notifications
You must be signed in to change notification settings - Fork 0
Feat: Advanced Story controls "Pro panel" with presets and presets sharing implemented along with UI/UX updated as recommended #439
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
rohits1450
wants to merge
36
commits into
IndieHub25:main
Choose a base branch
from
rohits1450:feature/pro-panel
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
36 commits
Select commit
Hold shift + click to select a range
9afaaa4
fix: brief description of what you changed
rohits1450 55ac9b3
chore: remove accidental font zip files
rohits1450 4cf2d6f
fix:adavnced story control - Pro Panels with presets and preset sharing
rohits1450 42911b4
feat: add Pro Panel with presets and preset sharing
rohits1450 e8b12c2
fix: resolve merge conflicts with upstream main
rohits1450 987a4a8
fix: resolve merge conflicts with upstream main
rohits1450 e3d9d5f
fix: resolve CodeRabbit review issues and hydration mismatch
rohits1450 57a9327
fix: address CodeRabbit nitpick comments for CSS and package.json
rohits1450 f291ef2
fix: enable Tailwind directives in Biome config
rohits1450 24537f9
fix: lint, JSDoc, model IDs, footer removal, route rename
rohits1450 0afc8d3
fix: resolve CI failures (ESLint, Lighthouse, dependency review)
rohits1450 73fef0a
style: apply Prettier formatting across codebase
rohits1450 502c710
fix: resolve new merge conflicts with upstream main
rohits1450 a59b349
style: fix Prettier formatting to pass CI lint checks
rohits1450 cd23870
fix: resolve merge conflicts with upstream main
rohits1450 fa4ba95
merge: sync feature/pro-panel with upstream/main (keep pro-panel chan…
rohits1450 42df796
fix: resolve lint/prettier errors and add missing Check/Copy imports …
rohits1450 43389de
feat(pro-panel): add accessibility, tooltips, rate limiting, and tests
rohits1450 4681e0f
Merge remote-tracking branch 'upstream/main' into feature/pro-panel
rohits1450 3512682
feat(pro-panel): enhanced tooltips, accessibility, API validation, an…
rohits1450 70d1eca
fix(api): resolve TS errors from upstream groq-service changes
rohits1450 c856d57
fix: prettier formatting and lint warnings
rohits1450 eba3dc3
fix(ci): pin wrangler version to 3.99.0 for stable deployments
rohits1450 66c8be3
fix(ci): correct deploy output directory to .vercel/output/static
rohits1450 9f23bad
fix(ci): let wrangler read output dir from wrangler.toml and fix bare…
rohits1450 871a9ef
fix(security): sanitize blob URLs in upload page to resolve CodeQL wa…
rohits1450 5b8aef5
fix: resolve ESLint errors and add missing @upstash/ratelimit dependency
rohits1450 1009cac
fix: add @upstash/ratelimit dependency and server-only guard to rate-…
rohits1450 2b8d998
fix(ci): explicitly install wrangler before deploy to avoid npx resol…
rohits1450 80c4827
fix(ci): remove next/font/google to avoid build-time font fetches; ex…
rohits1450 4a81687
fix(ci): replace wrangler-action with direct wrangler run to fix CLOU…
rohits1450 c54c86c
cloudfare issue solved
rohits1450 9075592
fix(api): replace any with typed body interface to resolve TS errors
rohits1450 d7701a6
Merge upstream/main into feature/pro-panel
rohits1450 122ddf4
Merge remote-tracking branch 'upstream/main' into feature/pro-panel
rohits1450 78e1b1b
fix(ci): fix CF Pages preview deployment URL and update env var names
rohits1450 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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 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 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 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,33 @@ | ||
| /** | ||
| * Pro Panel Page | ||
| * Advanced story generation configuration with 70+ parameters | ||
| * Noir Dossier visual design | ||
| */ | ||
|
|
||
| import { Metadata } from 'next'; | ||
| import { ProPanel } from '@/components/pro-panel/ProPanel'; | ||
|
|
||
| export const metadata: Metadata = { | ||
| title: 'Pro Panel | GroqTales', | ||
| description: 'Advanced AI story generation with 70+ customizable parameters across 9 categories', | ||
| openGraph: { | ||
| title: 'Pro Panel | GroqTales', | ||
| description: 'Fine-tune every aspect of your AI-generated stories', | ||
| type: 'website', | ||
| }, | ||
| }; | ||
|
|
||
| export default function ProPanelPage() { | ||
| return ( | ||
| <div className="bg-background-dark font-display overflow-x-hidden min-h-screen relative"> | ||
| {/* Halftone dot background */} | ||
| <div className="fixed inset-0 z-0 halftone-bg pointer-events-none opacity-40" /> | ||
|
|
||
| <div className="relative z-10 flex flex-col min-h-screen"> | ||
| <main className="flex-grow"> | ||
| <ProPanel /> | ||
| </main> | ||
| </div> | ||
| </div> | ||
| ); | ||
| } |
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.