Skip to content

Commit

Permalink
chore/fix: Moved project to a fresh vite project directory. Fixed som…
Browse files Browse the repository at this point in the history
…e theme colours. Changed namespace to Stegg throughout index.html and README
  • Loading branch information
alifeinbinary committed Oct 9, 2024
1 parent c6697c9 commit fb4b665
Show file tree
Hide file tree
Showing 9 changed files with 6,408 additions and 16,137 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Binary Translator
# Stegg

This is a front-end React application written in Typescript.

Expand All @@ -18,10 +18,13 @@ This project is published under the GPLv3 license.
- Cryptography in the browser
- Image generation and consumption
- Embedding metadata in files
- React router
- Internationalisation
- API with AWS Lambda

## Demo

You can play with a [demo](https://alifeinbinary.github.io/binary-translate/) here.
You can play with a [demo](https://alifeinbinary.github.io/stegg/) here.

## Getting started

Expand Down
30 changes: 14 additions & 16 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,19 +1,17 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/binary-translate.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Binary Translator by Andrew Halliwell coded in Typescript and made with React, Tailwind, Font Awesome, Vite, and Flowbite"
/>
<meta name="theme-color" content="#000000" />
<link rel="apple-touch-icon" href="/binary-translate.png" />
<title>Binary Translator by A Life in Binary</title>
</head>
<body class="bg-slate-800 dark:bg-gray-900">
<div id="root" class="h-screen w-screen"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/png" href="/binary-translate.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Stegg is an app that creates steganographs, or images that have a secret message stored within them. Steganographs created with Stegg can be decrypted by anyone with the password. Users can share the image with others, privately or publicly via the Stegg feed and anyone with the password can decrypt the secret message."
/>
<title>Stegg by A Life in Binary</title>
</head>
<body class="bg-slate-800 dark:bg-gray-900">
<div id="root" class="h-screen w-screen"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading

0 comments on commit fb4b665

Please sign in to comment.