Skip to content
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

Shinigami Script Editor Playground #290

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2,952 changes: 2,113 additions & 839 deletions frontend/pnpm-lock.yaml

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion frontend/src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -46,5 +46,5 @@ body {
}

.highlight {
background: #008000C0;
background: #008000c0;
}
14 changes: 9 additions & 5 deletions frontend/src/components/about-modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,12 @@ export const AboutModal: FC<AboutModalProps> = ({ isOpen, onClose }) => (
handler={onClose}
className="bg-black w-full"
nonce={undefined}
onResize={() => { }}
onResizeCapture={() => { }} placeholder={undefined} onPointerEnterCapture={undefined} onPointerLeaveCapture={undefined}>
onResize={() => {}}
onResizeCapture={() => {}}
placeholder={undefined}
onPointerEnterCapture={undefined}
onPointerLeaveCapture={undefined}
>
<button
className="p-1.5 border-2 border-[#00FF5E] rounded-md absolute right-0 bg-[#00FF5E]/10 z-20"
onClick={onClose}
Expand All @@ -31,9 +35,9 @@ export const AboutModal: FC<AboutModalProps> = ({ isOpen, onClose }) => (
<div className="w-full h-28 bg-[url('/banner.png')] bg-cover bg-no-repeat bg-center" />
<div className="font-medium">
<p className="text-white mb-4">
Shinigami is a Bitcoin Script library for generic Script VM execution in Cairo,
enabling the generation of STARK proofs for Bitcoin Script computation and
Bitcoin transaction execution.
Shinigami is a Bitcoin Script library for generic Script VM execution
in Cairo, enabling the generation of STARK proofs for Bitcoin Script
computation and Bitcoin transaction execution.
</p>
<ul className="list-disc text-white ml-4">
<li>Bitcoin Script interpretation and execution</li>
Expand Down
14 changes: 7 additions & 7 deletions frontend/src/components/footer.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
export default function Footer() {
return (
<div className="flex flex-row items-center justify-center pt-5 pb-8 xl:absolute xl:bottom-0">
<p className="text-white text-lg uppercase">
Shinigami Script Wizard. V.10
</p>
</div>
);
return (
<div className="flex flex-row items-center justify-center pt-5 pb-8 xl:absolute xl:bottom-0">
<p className="text-white text-lg uppercase">
Shinigami Script Wizard. V.10
</p>
</div>
);
}
4 changes: 3 additions & 1 deletion frontend/src/components/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ const MobileMenu: FC<MobileMenuProps> = ({ isOpen, onClose, onOpenModal }) => {
<Link href="/">
<div className="flex flex-row items-center justify-center space-x-0.5">
<Image src={logo} width={35} height={35} alt="Shinigami Logo" />
<h6 className="uppercase text-white pl-2 text-lg">Shinigami Script Wizard</h6>
<h6 className="uppercase text-white pl-2 text-lg">
Shinigami Script Wizard
</h6>
</div>
</Link>
<button className="block sm:hidden py-2.5" onClick={onClose}>
Expand Down
Loading
Loading