Skip to content

Commit

Permalink
Initial frontend commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jan-nicklaus committed Mar 24, 2024
1 parent b835342 commit ccf7729
Show file tree
Hide file tree
Showing 1,932 changed files with 302,591 additions and 0 deletions.
3 changes: 3 additions & 0 deletions frontend/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
20 changes: 20 additions & 0 deletions frontend/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html>
<head>
<title>Legal Prompt Builder</title>
<script defer src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"></script>
<link href="style.css" rel="stylesheet">
</head>
<body>
<script type="text/javascript">
document.addEventListener("alpine:init", () => {
Alpine.data("state", () => ({
"test": "Hello World!"
}))
});
</script>
<div x-data="state" id="basediv">
<h1 class="text-red-400" x-text="test"></h1>
</div>
</body>
</html>
1 change: 1 addition & 0 deletions frontend/node_modules/.bin/cssesc

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/node_modules/.bin/glob

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/node_modules/.bin/jiti

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/node_modules/.bin/nanoid

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/node_modules/.bin/node-which

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/node_modules/.bin/resolve

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/node_modules/.bin/sucrase

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/node_modules/.bin/sucrase-node

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/node_modules/.bin/tailwind

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/node_modules/.bin/tailwindcss

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions frontend/node_modules/.bin/yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit ccf7729

Please sign in to comment.