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
79 changes: 39 additions & 40 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,43 +1,42 @@
<!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>
</html>
<footer>
<p>Made with ❤️ by LCS</p>
</footer>
</body>
</html>
9 changes: 3 additions & 6 deletions js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,16 @@ Sentry.init({
sendDefaultPii: true,

// Enable performance monitoring + session replay
integrations: [
new BrowserTracing(),
new Replay()
],
integrations: [new BrowserTracing(), new Replay()],
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'Replay' is deprecated. [radarlint-js:javascript:S1874]


// Performance Monitoring
tracesSampleRate: 1.0, // Capture 100% (lower in prod)

// Session Replay
replaysSessionSampleRate: 0.1, // Capture 10% of sessions
replaysOnErrorSampleRate: 1.0 // Always capture replay on error
replaysOnErrorSampleRate: 1.0, // Always capture replay on error
});

// Test error
myUndefinedFunction();
console.log("All-in-One Tools loaded.");
console.log("All-in-One Tools loaded.");