-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.tsx
More file actions
65 lines (60 loc) · 2.51 KB
/
Copy pathindex.tsx
File metadata and controls
65 lines (60 loc) · 2.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
// ===================================================================================
// 🏷️ PROJECT: QuickLink - Fast & Secure URL Shortener, QR Generator & API
// 👨💻 AUTHOR: Deep Dey (Ceo,Dev,Founder)
// 🛡️ Helper: Google Gemini & ChatGPT
// 🌐 WEBSITE: https://qlynk.vercel.app
// 📅 CREATED: 2025
// 🧠 DESCRIPTION:
// QuickLink is a secure, high-performance web application designed for
// shortening URLs, generating QR codes, and providing developers with
// easy-to-integrate API services. Built with simplicity, reliability,
// and speed in mind by Deep Dey.
//
// ⚙️ TECHNOLOGY STACK:
// - HTML, CSS, TypeScript
// - Node.js / Express (Backend)
// - Vercel (Deployment)
// - JSON API Integration
//
// 📩 CONTACT:
// ✉️ Email: thedeeparise@gmail.com
// 🔗 GitHub: https://github.com/deepdeyiitgn/QuickLink
// 🧾 License: All Rights Reserved © 2025 Deep Dey
// 💬 Instagram: https://www.instagram.com/deepdey.official/
//
// ⚠️ LEGAL NOTICE:
// This source code is the intellectual property of Deep Dey.
// Any unauthorized copying, modification, distribution, or use of
// this project in whole or in part without written permission is
// strictly prohibited and may result in legal action.
//
// ===================================================================================
// React Imports Start Here
import React from 'react';
import ReactDOM from 'react-dom/client';
// React Imports End Here
// App Component Import Start Here
// FIX: Explicitly import from the current directory.
import App from './App';
// App Component Import End Here
// Root Element Mounting Start Here
const rootElement = document.getElementById('root');
if (!rootElement) {
throw new Error("Could not find root element to mount to");
}
// Root Element Mounting End Here
// React DOM Create Root Start Here
const root = ReactDOM.createRoot(rootElement);
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);
// React DOM Create Root End Here
// ===================================================================================
// © 2025 Deep Dey | All Rights Reserved.
// Project: QuickLink - Fast & Secure URL Shortener, QR Generator & API.
// Website: https://qlynk.vercel.app
// Maintainer: Deep Dey (Founder & Developer)
// Do not copy, modify, or redistribute without prior consent.
// ===================================================================================