Skip to content

Commit c5d7249

Browse files
updates
1 parent ecca223 commit c5d7249

File tree

7 files changed

+694
-17
lines changed

7 files changed

+694
-17
lines changed

_just/style/bg.css

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
/*
2+
3+
MIT License
4+
5+
Copyright (c) 2025 JustStudio <https://juststudio.is-a.dev/>
6+
7+
Permission is hereby granted, free of charge, to any person obtaining a copy
8+
of this software and associated documentation files (the "Software"), to deal
9+
in the Software without restriction, including without limitation the rights
10+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11+
copies of the Software, and to permit persons to whom the Software is
12+
furnished to do so, subject to the following conditions:
13+
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
23+
SOFTWARE.
24+
25+
*/
26+
27+
.bg {
28+
background: #b2e3f7;
29+
background: -webkit-linear-gradient(148deg, rgba(178, 227, 247, 1) 0%, rgba(87, 115, 199, 1) 50%, rgba(107, 54, 214, 1) 100%);
30+
background: -moz-linear-gradient(148deg, rgba(178, 227, 247, 1) 0%, rgba(87, 115, 199, 1) 50%, rgba(107, 54, 214, 1) 100%);
31+
background: linear-gradient(148deg, rgba(178, 227, 247, 1) 0%, rgba(87, 115, 199, 1) 50%, rgba(107, 54, 214, 1) 100%);
32+
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#B2E3F7", endColorstr="#6B36D6", GradientType=0);
33+
}

_just/style/empty.css

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/builder.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,18 @@ SOFTWARE.
2727
import { useEffect, useState } from 'react';
2828
import { useTranslations } from 'next-intl';
2929
import { useRouter } from 'next/router';
30+
import MonacoCodeEditor, {Monaco} from "@monaco-editor/react";
3031

3132
const Builder = () => {
3233
const translate = useTranslations();
3334

3435
return (
35-
<div>
36+
<div className=''>
3637
<span>{translate.raw('builder-file')}</span>
38+
<MonacoCodeEditor
39+
language="javascript"
40+
theme="light"
41+
/>
3742
</div>
3843
)
3944
}

0 commit comments

Comments
 (0)