Skip to content

Commit d63344c

Browse files
committed
Initial Commit
0 parents  commit d63344c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+7767
-0
lines changed

.env.example

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
NEXT_PUBLIC_SERVICE_ID="Enter your service id here"
2+
NEXT_PUBLIC_TEMPLATE_ID="Enter your template id here"
3+
NEXT_PUBLIC_PUBLIC_KEY="Enter your public key here"

.eslintrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "next/core-web-vitals"
3+
}

.gitignore

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
.yarn/install-state.gz
8+
9+
# testing
10+
/coverage
11+
12+
# next.js
13+
/.next/
14+
/out/
15+
16+
# production
17+
/build
18+
19+
# misc
20+
.DS_Store
21+
*.pem
22+
23+
# debug
24+
npm-debug.log*
25+
yarn-debug.log*
26+
yarn-error.log*
27+
28+
# local env files
29+
.env*.local
30+
31+
# vercel
32+
.vercel
33+
34+
# typescript
35+
*.tsbuildinfo
36+
next-env.d.ts

Image Prompts.txt

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
Site: https://playground.com/
2+
3+
Default Configuration:
4+
5+
- Model: Stable Diffusion XL
6+
7+
- Filter: RealVis XL
8+
9+
- Image Dimentions: 1024*576 (16:9)
10+
11+
- Quality & Details: 30 steps
12+
13+
--------------------------------------------------
14+
15+
Home Page Background
16+
17+
- Prompt: "An enchanted forest at night, under a starlit sky. The scene is dark by mystical glows from luminescent flowers, exotic mushrooms, and arcane symbols on ancient trees. The atmosphere is serene, with a magical aura conveyed through ethereal particles and soft glimmers of light floating in the air. The color scheme should focus on dark tones with highlights in mild yellow and gold, creating a magical and inviting scene that blends the beauty of an astral night with the mystery of a magical forest."
18+
19+
- Seed: 656140970
20+
21+
22+
--------------------------------------------------
23+
24+
About Page Background
25+
26+
- Prompt: "mystical forest, dawn, luminescent plants, mist, ancient trees, tranquil, magical ambiance."
27+
28+
- Seed: 568754894
29+
30+
31+
--------------------------------------------------
32+
33+
Projects Page Background
34+
35+
- Prompt: "An enchanted workshop at night, nestled within a forest clearing. The workshop is illuminated by glowing crystals and lanterns, casting soft lights on intricate machinery and floating spellbooks. Workbenches are cluttered with magical tools, potions, and ancient maps. The backdrop is a blend of natural forest elements and magical innovation, suggesting a space where magical projects and creations come to life."
36+
37+
- Seed: 949988405
38+
39+
40+
--------------------------------------------------
41+
42+
Contact Page Background
43+
44+
- Prompt: "Twilight forest, ancient stone archway, glowing runes, magical flora, shimmering leaves, ethereal wisps, ambient light."
45+
46+
- Seed: 225378614
47+
48+

README.md

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
2+
3+
## Getting Started
4+
5+
First, run the development server:
6+
7+
```bash
8+
npm run dev
9+
# or
10+
yarn dev
11+
# or
12+
pnpm dev
13+
# or
14+
bun dev
15+
```
16+
17+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
18+
19+
You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file.
20+
21+
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
22+
23+
## Learn More
24+
25+
To learn more about Next.js, take a look at the following resources:
26+
27+
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
28+
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
29+
30+
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
31+
32+
## Deploy on Vercel
33+
34+
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
35+
36+
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.
37+
38+
39+
### 3d Models From:
40+
41+
- Wizard Boy - https://sketchfab.com/3d-models/tim-mckee-boy-wizard-900beec6d3504d51ade81cb5c052163b
42+
43+
- Wizard Hat - https://sketchfab.com/3d-models/stylized-wizard-hat-f59021d602334367987bcd7657cec722
44+
45+
- Wizard Staff - https://sketchfab.com/3d-models/wizard-staff-873f596fb3cc44998cb75a3dce60181f

jsconfig.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"compilerOptions": {
3+
"paths": {
4+
"@/*": ["./src/*"]
5+
}
6+
}
7+
}

next.config.mjs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {};
3+
4+
export default nextConfig;

0 commit comments

Comments
 (0)