Skip to content
Closed
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
84 changes: 43 additions & 41 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,48 +1,50 @@
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>All-in-One Tools</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<h1>All-in-One Tools</h1>
<p>A collection of useful tools, all in one place.</p>
</header>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>All-in-One Tools</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<header>
<h1>All-in-One Tools</h1>
<p>A collection of useful tools, all in one place.</p>
</header>

<main class="tool-grid">
<div class="tool-card">
<h2>Unit Converter</h2>
<p>Convert between common units (length, weight, temperature).</p>
<a href="tools/converter.html" class="btn">Open</a>
</div>
<div class="tool-card">
<h2>Calculator</h2>
<p>Perform quick calculations.</p>
<a href="tools/calculator.html" class="btn">Open</a>
</div>
<div class="tool-card">
<h2>Password Generator</h2>
<p>Create strong and secure passwords.</p>
<a href="tools/password.html" class="btn">Open</a>
</div>
<div class="tool-card">
<h2>QR Code Generator</h2>
<p>Turn text or links into QR codes.</p>
<a href="tools/qr.html" class="btn">Open</a>
</div>
<main class="tool-grid">
<div class="tool-card">
<h2>Unit Converter</h2>
<p>Convert between common units (length, weight, temperature).</p>
<a href="tools/converter.html" class="btn">Open</a>
</div>
<div class="tool-card">
<h2>Calculator</h2>
<p>Perform quick calculations.</p>
<a href="tools/calculator.html" class="btn">Open</a>
</div>
<div class="tool-card">
<h2>Password Generator</h2>
<p>Create strong and secure passwords.</p>
<a href="tools/password.html" class="btn">Open</a>
</div>
<div class="tool-card">
<h2>QR Code Generator</h2>
<p>Turn text or links into QR codes.</p>
<a href="tools/qr.html" class="btn">Open</a>
</div>
</main>

</main>

<footer>
<p>Made with ❤️ by LCS</p>
</footer>
</body>
<footer>
<p>Made with ❤️ by LCS</p>
</footer>
</body>
</html>

<script src="https://js.sentry-cdn.com/3410730c33a0ed28fc51370949258ba8.min.js" crossorigin="anonymous"></script>
<script
src="https://js.sentry-cdn.com/3410730c33a0ed28fc51370949258ba8.min.js"
crossorigin="anonymous"
></script>
<script src="js/sentry.js"></script>

<script>
Expand All @@ -59,4 +61,4 @@ <h2>QR Code Generator</h2>

<script>
myUndefinedFunction(); // This will trigger an error
</script>
</script>
2 changes: 1 addition & 1 deletion js/sentry.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@ Sentry.init({
dsn: "https://3410730c33a0ed28fc51370949258ba8@o4508406269995008.ingest.us.sentry.io/4508406275608576",
integrations: [new Sentry.BrowserTracing()],
tracesSampleRate: 1.0,
});
});