Initial commit from Create Next App

This commit is contained in:
Selvi 2026-04-17 12:25:20 +05:30
commit 72d1527aa3
21 changed files with 7161 additions and 0 deletions

41
.gitignore vendored Normal file
View File

@ -0,0 +1,41 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions
# testing
/coverage
# next.js
/.next/
/out/
# production
/build
# misc
.DS_Store
*.pem
# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*
# env files (can opt-in for committing if needed)
.env*
# vercel
.vercel
# typescript
*.tsbuildinfo
next-env.d.ts

5
AGENTS.md Normal file
View File

@ -0,0 +1,5 @@
<!-- BEGIN:nextjs-agent-rules -->
# This is NOT the Next.js you know
This version has breaking changes — APIs, conventions, and file structure may all differ from your training data. Read the relevant guide in `node_modules/next/dist/docs/` before writing any code. Heed deprecation notices.
<!-- END:nextjs-agent-rules -->

1
CLAUDE.md Normal file
View File

@ -0,0 +1 @@
@AGENTS.md

36
README.md Normal file
View File

@ -0,0 +1,36 @@
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://nextjs.org/docs/app/api-reference/cli/create-next-app).
## Getting Started
First, run the development server:
```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
You can start editing the page by modifying `app/page.tsx`. The page auto-updates as you edit the file.
This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.
## Learn More
To learn more about Next.js, take a look at the following resources:
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!
## Deploy on Vercel
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.

BIN
app/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

565
app/globals.css Normal file
View File

@ -0,0 +1,565 @@
:root {
--navy: #0F2444;
--navy-mid: #1B3A6B;
--navy-light: #2A5298;
--orange: #E8572A;
--orange-dark: #C0421B;
--orange-light: #F07A50;
--cream: #F5F2ED;
--white: #ffffff;
--gray-100: #F7F6F3;
--gray-200: #ECEAE5;
--gray-400: #B0ADA6;
--gray-600: #6B6860;
--gray-800: #2E2C29;
--font-display: 'Barlow Condensed', sans-serif;
--font-body: 'Barlow', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
font-family: var(--font-body);
background: var(--white);
color: var(--gray-800);
overflow-x: hidden;
padding-top: 64px; /* Space for fixed nav */
}
/* ── NAV ── */
nav {
position: fixed; top: 0; left: 0; right: 0; z-index: 100;
background: var(--navy);
display: flex; align-items: center; justify-content: space-between;
padding: 0 48px; height: 64px;
border-bottom: 2px solid var(--orange);
}
.nav-logo {
display: flex; align-items: center; gap: 12px;
font-family: var(--font-display);
font-size: 22px; font-weight: 700; color: var(--white);
letter-spacing: .04em; text-decoration: none;
}
.nav-logo .logo-mark {
width: 38px; height: 38px; border-radius: 50%;
border: 2.5px solid var(--orange);
display: flex; align-items: center; justify-content: center;
font-size: 14px; font-weight: 800; color: var(--white);
letter-spacing: -.02em;
}
.nav-logo .logo-text span { color: var(--orange); }
.nav-links {
display: flex; align-items: center; gap: 32px; list-style: none;
}
.nav-links a {
font-family: var(--font-display); font-size: 14px; font-weight: 500;
color: rgba(255,255,255,.75); text-decoration: none; letter-spacing: .06em;
text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--orange); }
.nav-cta {
background: var(--orange); color: var(--white);
font-family: var(--font-display); font-size: 14px; font-weight: 700;
letter-spacing: .06em; text-transform: uppercase;
padding: 10px 22px; border: none; border-radius: 4px; cursor: pointer;
transition: background .2s;
text-decoration: none;
}
.nav-cta:hover { background: var(--orange-dark); }
/* ── HERO ── */
.hero {
min-height: calc(100vh - 64px);
background: var(--navy);
display: grid; grid-template-columns: 1fr 1fr;
position: relative; overflow: hidden;
}
.hero-pattern {
position: absolute; inset: 0; opacity: .04;
background-image: repeating-linear-gradient(
0deg, transparent, transparent 39px, rgba(255,255,255,.5) 39px, rgba(255,255,255,.5) 40px
), repeating-linear-gradient(
90deg, transparent, transparent 39px, rgba(255,255,255,.5) 39px, rgba(255,255,255,.5) 40px
);
}
.hero-accent {
position: absolute; right: -60px; top: 80px;
width: 420px; height: 420px; border-radius: 50%;
border: 60px solid var(--orange); opacity: .12;
}
.hero-accent2 {
position: absolute; right: 80px; bottom: -80px;
width: 280px; height: 280px; border-radius: 50%;
border: 40px solid var(--orange); opacity: .08;
}
.hero-left {
display: flex; flex-direction: column; justify-content: center;
padding: 80px 48px 80px 80px; position: relative; z-index: 2;
}
.hero-eyebrow {
display: inline-flex; align-items: center; gap: 10px;
font-family: var(--font-display); font-size: 13px; font-weight: 600;
letter-spacing: .12em; text-transform: uppercase; color: var(--orange);
margin-bottom: 24px;
}
.hero-eyebrow::before {
content: ''; display: block; width: 32px; height: 2px; background: var(--orange);
}
.hero-h1 {
font-family: var(--font-display);
font-size: clamp(52px, 5vw, 80px);
font-weight: 800; line-height: .95;
color: var(--white); letter-spacing: -.01em;
text-transform: uppercase; margin-bottom: 28px;
}
.hero-h1 em { color: var(--orange); font-style: normal; display: block; }
.hero-sub {
font-size: 17px; font-weight: 300; line-height: 1.7;
color: rgba(255,255,255,.65); max-width: 460px; margin-bottom: 40px;
}
.hero-sub strong { color: rgba(255,255,255,.9); font-weight: 500; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.btn-primary {
background: var(--orange); color: var(--white);
font-family: var(--font-display); font-size: 15px; font-weight: 700;
letter-spacing: .08em; text-transform: uppercase;
padding: 14px 32px; border: none; border-radius: 4px; cursor: pointer;
transition: background .2s; text-decoration: none; display: inline-block;
}
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary {
background: transparent; color: var(--white);
font-family: var(--font-display); font-size: 15px; font-weight: 700;
letter-spacing: .08em; text-transform: uppercase;
padding: 13px 32px; border: 1.5px solid rgba(255,255,255,.3);
border-radius: 4px; cursor: pointer; transition: border-color .2s;
text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: rgba(255,255,255,.7); }
.hero-stats {
display: flex; gap: 40px; padding-top: 28px;
border-top: 1px solid rgba(255,255,255,.1);
}
.stat-val {
font-family: var(--font-display); font-size: 36px; font-weight: 800;
color: var(--orange); line-height: 1;
}
.stat-label {
font-size: 12px; font-weight: 400; color: rgba(255,255,255,.5);
margin-top: 4px; letter-spacing: .03em;
}
.hero-right {
display: flex; flex-direction: column; justify-content: center;
padding: 80px 80px 80px 40px; position: relative; z-index: 2;
}
.quote-card {
background: rgba(255,255,255,.06);
border: 1px solid rgba(255,255,255,.12);
border-radius: 12px; padding: 32px;
backdrop-filter: blur(10px);
}
.quote-card-title {
font-family: var(--font-display); font-size: 20px; font-weight: 700;
color: var(--white); text-transform: uppercase; letter-spacing: .06em;
margin-bottom: 6px;
}
.quote-card-sub {
font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 24px;
}
.form-group { margin-bottom: 14px; }
.form-label {
display: block; font-size: 11px; font-weight: 600; letter-spacing: .08em;
text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 6px;
}
.form-input, .form-select {
width: 100%; background: rgba(255,255,255,.08);
border: 1px solid rgba(255,255,255,.15); border-radius: 6px;
padding: 11px 14px; font-family: var(--font-body); font-size: 14px;
color: var(--white); outline: none; transition: border-color .2s;
appearance: none;
}
.form-input::placeholder { color: rgba(255,255,255,.3); }
.form-input:focus, .form-select:focus { border-color: var(--orange); }
.form-select option { background: var(--navy); color: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
width: 100%; background: var(--orange); color: var(--white);
font-family: var(--font-display); font-size: 16px; font-weight: 700;
letter-spacing: .08em; text-transform: uppercase;
padding: 14px; border: none; border-radius: 6px; cursor: pointer;
margin-top: 6px; transition: background .2s;
}
.form-submit:hover { background: var(--orange-dark); }
.form-note {
text-align: center; font-size: 12px; color: rgba(255,255,255,.35);
margin-top: 12px;
}
/* ── TRUST BAR ── */
.trust-bar {
background: var(--orange);
display: flex; align-items: center; justify-content: center;
gap: 0; overflow: hidden;
}
.trust-item {
flex: 1; display: flex; align-items: center; justify-content: center;
gap: 10px; padding: 14px 20px;
border-right: 1px solid rgba(255,255,255,.2);
font-family: var(--font-display); font-size: 13px; font-weight: 600;
letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.9);
}
.trust-item:last-child { border-right: none; }
.trust-icon { font-size: 16px; }
/* ── SECTIONS ── */
section { padding: 96px 80px; }
.section-eyebrow {
font-family: var(--font-display); font-size: 12px; font-weight: 700;
letter-spacing: .14em; text-transform: uppercase; color: var(--orange);
margin-bottom: 12px; display: flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
content: ''; display: block; width: 24px; height: 2px; background: var(--orange);
}
.section-h2 {
font-family: var(--font-display); font-size: clamp(38px, 4vw, 58px);
font-weight: 800; text-transform: uppercase; line-height: .95;
color: var(--navy); letter-spacing: -.01em;
}
.section-h2 span { color: var(--orange); }
/* ── PRODUCTS ── */
.products-section { background: var(--gray-100); }
.products-header {
display: flex; align-items: flex-end; justify-content: space-between;
margin-bottom: 48px; flex-wrap: wrap; gap: 20px;
}
.products-grid {
display: grid; grid-template-columns: repeat(3, 1fr);
gap: 2px; background: var(--gray-200); border: 2px solid var(--gray-200);
border-radius: 12px; overflow: hidden;
}
.product-card {
background: var(--white); padding: 32px 28px;
transition: background .2s; cursor: pointer; position: relative;
overflow: hidden; text-decoration: none; display: block;
}
.product-card::after {
content: ''; position: absolute; bottom: 0; left: 0; right: 0;
height: 3px; background: var(--orange);
transform: scaleX(0); transform-origin: left;
transition: transform .3s;
}
.product-card:hover { background: var(--navy); }
.product-card:hover::after { transform: scaleX(1); }
.product-card:hover .product-name { color: var(--white); }
.product-card:hover .product-desc { color: rgba(255,255,255,.55); }
.product-card:hover .product-tag { background: rgba(232,87,42,.2); color: var(--orange-light); }
.product-card:hover .product-arrow { color: var(--orange); }
.product-icon {
width: 44px; height: 44px; background: var(--orange);
border-radius: 8px; display: flex; align-items: center; justify-content: center;
margin-bottom: 20px;
}
.product-icon svg { width: 22px; height: 22px; }
.product-name {
font-family: var(--font-display); font-size: 20px; font-weight: 700;
text-transform: uppercase; color: var(--navy); letter-spacing: .02em;
margin-bottom: 8px; transition: color .2s;
}
.product-desc {
font-size: 13px; color: var(--gray-600); line-height: 1.6;
margin-bottom: 16px; transition: color .2s;
}
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.product-tag {
font-size: 10px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
padding: 3px 8px; border-radius: 3px;
background: rgba(15,36,68,.07); color: var(--navy-light);
transition: background .2s, color .2s;
}
.product-arrow {
font-size: 18px; color: var(--gray-400); transition: color .2s;
}
/* ── SERVICES ── */
.services-section { background: var(--navy); }
.services-section .section-h2 { color: var(--white); }
.services-grid {
display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
margin-top: 48px;
}
.service-card {
background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
border-radius: 10px; padding: 32px;
transition: background .2s, border-color .2s;
}
.service-card:hover {
background: rgba(232,87,42,.1); border-color: rgba(232,87,42,.3);
}
.service-num {
font-family: var(--font-display); font-size: 48px; font-weight: 800;
color: rgba(255,255,255,.06); line-height: 1; margin-bottom: -8px;
letter-spacing: -.02em;
}
.service-name {
font-family: var(--font-display); font-size: 22px; font-weight: 700;
text-transform: uppercase; color: var(--white); margin-bottom: 12px;
letter-spacing: .04em;
}
.service-name span { color: var(--orange); }
.service-desc {
font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7;
margin-bottom: 20px;
}
.service-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.service-list li {
font-size: 13px; color: rgba(255,255,255,.6);
display: flex; align-items: center; gap: 8px;
}
.service-list li::before {
content: ''; width: 6px; height: 6px; border-radius: 50%;
background: var(--orange); flex-shrink: 0;
}
/* ── TERRITORY ── */
.territory-section { background: var(--cream); }
.territory-layout {
display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
margin-top: 48px; align-items: center;
}
.territory-map-wrap {
background: var(--white); border-radius: 12px;
border: 1px solid var(--gray-200); overflow: hidden;
padding: 32px; position: relative;
}
.radius-label {
position: absolute; top: 16px; right: 16px;
background: var(--navy); color: var(--white);
font-family: var(--font-display); font-size: 12px; font-weight: 700;
letter-spacing: .08em; text-transform: uppercase;
padding: 5px 12px; border-radius: 20px;
}
.city-list { display: flex; flex-direction: column; gap: 10px; }
.city-item {
display: flex; align-items: center; gap: 14px;
padding: 14px 16px; background: var(--white); border-radius: 8px;
border: 1px solid var(--gray-200);
}
.city-dot {
width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.city-dot.home { background: var(--orange); }
.city-dot.near { background: var(--navy-mid); }
.city-dot.far { background: var(--gray-400); }
.city-info { flex: 1; }
.city-name-txt {
font-family: var(--font-display); font-size: 15px; font-weight: 700;
text-transform: uppercase; color: var(--navy); letter-spacing: .02em;
}
.city-sub-txt { font-size: 12px; color: var(--gray-600); margin-top: 1px; }
.city-dist-badge {
font-size: 11px; font-weight: 600; color: var(--orange);
font-family: var(--font-display); letter-spacing: .04em;
}
/* ── TARGETS ── */
.targets-section { background: var(--white); }
.targets-grid {
display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
margin-top: 48px;
}
.target-card {
border: 1px solid var(--gray-200); border-radius: 10px; padding: 24px 20px;
transition: border-color .2s, transform .2s;
}
.target-card:hover { border-color: var(--orange); transform: translateY(-3px); }
.target-priority {
font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
margin-bottom: 12px;
}
.priority-1 { color: var(--orange); }
.priority-2 { color: var(--navy-mid); }
.priority-3 { color: var(--gray-600); }
.target-name {
font-family: var(--font-display); font-size: 17px; font-weight: 700;
text-transform: uppercase; color: var(--navy); letter-spacing: .02em;
margin-bottom: 8px; line-height: 1.1;
}
.target-examples {
font-size: 12px; color: var(--gray-600); line-height: 1.6;
}
/* ── STAIN PROMO ── */
.stain-section {
background: var(--navy); position: relative; overflow: hidden;
}
.stain-bg {
position: absolute; right: -100px; top: -100px;
width: 500px; height: 500px; border-radius: 50%;
background: var(--orange); opacity: .06;
}
.stain-layout {
display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
align-items: center; position: relative; z-index: 1;
}
.stain-badge {
display: inline-block; background: var(--orange);
font-family: var(--font-display); font-size: 11px; font-weight: 700;
letter-spacing: .12em; text-transform: uppercase; color: var(--white);
padding: 5px 12px; border-radius: 3px; margin-bottom: 16px;
}
.stain-h2 {
font-family: var(--font-display); font-size: clamp(36px, 4vw, 54px);
font-weight: 800; text-transform: uppercase; color: var(--white);
line-height: .95; letter-spacing: -.01em; margin-bottom: 20px;
}
.stain-h2 span { color: var(--orange); }
.stain-desc {
font-size: 16px; color: rgba(255,255,255,.6); line-height: 1.7;
margin-bottom: 32px;
}
.product-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.product-pill {
background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
border-radius: 6px; padding: 12px 18px;
font-family: var(--font-display); font-size: 14px; font-weight: 600;
text-transform: uppercase; color: var(--white); letter-spacing: .04em;
}
.product-pill strong { display: block; color: var(--orange); font-size: 11px; margin-bottom: 2px; }
.stain-targets { display: flex; flex-direction: column; gap: 12px; }
.stain-target {
display: flex; align-items: center; gap: 14px;
background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
border-radius: 8px; padding: 14px 18px;
}
.stain-target-dot {
width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0;
}
.stain-target-txt { font-size: 14px; color: rgba(255,255,255,.75); }
/* ── CTA ── */
.cta-section {
background: var(--orange); text-align: center; padding: 80px;
}
.cta-h2 {
font-family: var(--font-display); font-size: clamp(42px, 5vw, 72px);
font-weight: 800; text-transform: uppercase; color: var(--white);
line-height: .95; letter-spacing: -.01em; margin-bottom: 20px;
}
.cta-sub {
font-size: 18px; color: rgba(255,255,255,.8); margin-bottom: 40px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white {
background: var(--white); color: var(--orange);
font-family: var(--font-display); font-size: 15px; font-weight: 700;
letter-spacing: .08em; text-transform: uppercase;
padding: 14px 36px; border: none; border-radius: 4px; cursor: pointer;
}
.btn-white-outline {
background: transparent; color: var(--white);
font-family: var(--font-display); font-size: 15px; font-weight: 700;
letter-spacing: .08em; text-transform: uppercase;
padding: 13px 36px; border: 2px solid rgba(255,255,255,.5); border-radius: 4px;
cursor: pointer; transition: border-color .2s;
}
.btn-white-outline:hover { border-color: var(--white); }
/* ── FOOTER ── */
footer {
background: #080F1C; padding: 56px 80px 32px;
}
.footer-top {
display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
margin-bottom: 48px;
padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand-name {
font-family: var(--font-display); font-size: 24px; font-weight: 800;
color: var(--white); text-transform: uppercase; letter-spacing: .04em;
margin-bottom: 4px;
}
.footer-brand-name span { color: var(--orange); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.4); margin-bottom: 20px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none;
transition: color .2s;
}
.footer-contact a:hover { color: var(--orange); }
.footer-col-title {
font-family: var(--font-display); font-size: 13px; font-weight: 700;
letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4);
margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
font-size: 13px; color: rgba(255,255,255,.6); text-decoration: none;
transition: color .2s;
}
.footer-links a:hover { color: var(--orange); }
.footer-bottom {
display: flex; align-items: center; justify-content: space-between;
font-size: 12px; color: rgba(255,255,255,.25);
}
.footer-territory {
display: inline-flex; align-items: center; gap: 6px;
background: rgba(232,87,42,.15); color: var(--orange);
border-radius: 3px; padding: 3px 10px;
font-family: var(--font-display); font-size: 11px; font-weight: 600;
letter-spacing: .06em; text-transform: uppercase; margin-top: 10px;
}
/* ── LOGIN PAGE SPECIFIC ── */
.auth-page {
min-height: calc(100vh - 64px);
background: var(--cream);
display: flex; align-items: center; justify-content: center;
padding: 40px;
}
.auth-card {
background: var(--white);
border-radius: 12px;
box-shadow: 0 10px 30px rgba(0,0,0,0.05);
width: 100%;
max-width: 440px;
padding: 48px;
}
.auth-title {
font-family: var(--font-display);
font-size: 32px;
font-weight: 800;
color: var(--navy);
text-transform: uppercase;
margin-bottom: 8px;
}
.auth-sub {
font-size: 14px;
color: var(--gray-600);
margin-bottom: 32px;
}
.auth-form .form-label { color: var(--gray-600); }
.auth-form .form-input {
background: var(--gray-100);
border: 1px solid var(--gray-200);
color: var(--gray-800);
}
.auth-form .form-input:focus { border-color: var(--orange); }
/* ── ANIMATIONS ── */
@keyframes fadeUp {
from { opacity: 0; transform: translateY(24px); }
to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp .6s ease both; }
.hero-h1 { animation: fadeUp .6s .1s ease both; }
.hero-sub { animation: fadeUp .6s .2s ease both; }
.hero-btns { animation: fadeUp .6s .3s ease both; }
.hero-stats { animation: fadeUp .6s .4s ease both; }
.quote-card { animation: fadeUp .7s .3s ease both; }
/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 3px; }

40
app/layout.tsx Normal file
View File

@ -0,0 +1,40 @@
import type { Metadata } from "next";
import { Barlow, Barlow_Condensed } from "next/font/google";
import "./globals.css";
import Navbar from "@/components/Navbar";
import Footer from "@/components/Footer";
const barlow = Barlow({
subsets: ["latin"],
weight: ["300", "400", "500", "600"],
variable: "--font-body",
});
const barlowCondensed = Barlow_Condensed({
subsets: ["latin"],
weight: ["400", "500", "600", "700", "800"],
variable: "--font-display",
});
export const metadata: Metadata = {
title: "VG Fence Products — Ontario's B2B Fence Supply Partner",
description: "Supplying contractors, builders, and property managers across Ontario with chain link, ornamental, composite, glass railing, and stain products.",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body className={`${barlow.variable} ${barlowCondensed.variable}`}>
<Navbar />
<main>
{children}
</main>
<Footer />
</body>
</html>
);
}

142
app/page.module.css Normal file
View File

@ -0,0 +1,142 @@
.page {
--background: #fafafa;
--foreground: #fff;
--text-primary: #000;
--text-secondary: #666;
--button-primary-hover: #383838;
--button-secondary-hover: #f2f2f2;
--button-secondary-border: #ebebeb;
display: flex;
flex: 1;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: var(--font-geist-sans);
background-color: var(--background);
}
.main {
display: flex;
flex: 1;
width: 100%;
max-width: 800px;
flex-direction: column;
align-items: flex-start;
justify-content: space-between;
background-color: var(--foreground);
padding: 120px 60px;
}
.intro {
display: flex;
flex-direction: column;
align-items: flex-start;
text-align: left;
gap: 24px;
}
.intro h1 {
max-width: 320px;
font-size: 40px;
font-weight: 600;
line-height: 48px;
letter-spacing: -2.4px;
text-wrap: balance;
color: var(--text-primary);
}
.intro p {
max-width: 440px;
font-size: 18px;
line-height: 32px;
text-wrap: balance;
color: var(--text-secondary);
}
.intro a {
font-weight: 500;
color: var(--text-primary);
}
.ctas {
display: flex;
flex-direction: row;
width: 100%;
max-width: 440px;
gap: 16px;
font-size: 14px;
}
.ctas a {
display: flex;
justify-content: center;
align-items: center;
height: 40px;
padding: 0 16px;
border-radius: 128px;
border: 1px solid transparent;
transition: 0.2s;
cursor: pointer;
width: fit-content;
font-weight: 500;
}
a.primary {
background: var(--text-primary);
color: var(--background);
gap: 8px;
}
a.secondary {
border-color: var(--button-secondary-border);
}
/* Enable hover only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
a.primary:hover {
background: var(--button-primary-hover);
border-color: transparent;
}
a.secondary:hover {
background: var(--button-secondary-hover);
border-color: transparent;
}
}
@media (max-width: 600px) {
.main {
padding: 48px 24px;
}
.intro {
gap: 16px;
}
.intro h1 {
font-size: 32px;
line-height: 40px;
letter-spacing: -1.92px;
}
}
@media (prefers-color-scheme: dark) {
.logo {
filter: invert();
}
.page {
--background: #000;
--foreground: #000;
--text-primary: #ededed;
--text-secondary: #999;
--button-primary-hover: #ccc;
--button-secondary-hover: #1a1a1a;
--button-secondary-border: #1a1a1a;
}
}

242
app/page.tsx Normal file
View File

@ -0,0 +1,242 @@
import Link from 'next/link';
export default function Home() {
return (
<>
{/* HERO */}
<section className="hero">
<div className="hero-pattern"></div>
<div className="hero-accent"></div>
<div className="hero-accent2"></div>
<div className="hero-left">
<div className="hero-eyebrow">KitchenerWaterloo Region · Ontario</div>
<h1 className="hero-h1">
Ontario's B2B<br />
<em>Fence Supply</em><br />
Partner
</h1>
<p className="hero-sub">
Supplying contractors, builders, and property managers across Ontario with{' '}
<strong>chain link, ornamental, composite, glass railing, and stain products</strong>
with same-day job site delivery across a 250km radius from KWC.
</p>
<div className="hero-btns">
<Link href="/#quote" className="btn-primary">Request contractor pricing</Link>
<Link href="/products" className="btn-secondary">View all products</Link>
</div>
<div className="hero-stats">
<div>
<div className="stat-val">3+</div>
<div className="stat-label">Years serving KWC</div>
</div>
<div>
<div className="stat-val">250km</div>
<div className="stat-label">Delivery radius</div>
</div>
<div>
<div className="stat-val">9</div>
<div className="stat-label">Product lines</div>
</div>
<div>
<div className="stat-val">B2B</div>
<div className="stat-label">Contractor focus</div>
</div>
</div>
</div>
<div className="hero-right" id="quote">
<div className="quote-card">
<div className="quote-card-title">Request a quote</div>
<div className="quote-card-sub">Response within 2 business hours · Contractor pricing available</div>
<div className="form-row">
<div className="form-group">
<label className="form-label">Company name</label>
<input className="form-input" type="text" placeholder="ABC Fence Co." />
</div>
<div className="form-group">
<label className="form-label">Your name</label>
<input className="form-input" type="text" placeholder="John Smith" />
</div>
</div>
<div className="form-row">
<div className="form-group">
<label className="form-label">Phone</label>
<input className="form-input" type="tel" placeholder="519-xxx-xxxx" />
</div>
<div className="form-group">
<label className="form-label">Email</label>
<input className="form-input" type="email" placeholder="you@company.com" />
</div>
</div>
<div className="form-group">
<label className="form-label">Product needed</label>
<select className="form-select">
<option value="">Select a product...</option>
<option>Aluminum railing</option>
<option>Chain link fence commercial</option>
<option>Chain link fence residential</option>
<option>Composite fence</option>
<option>Expert Stain & Seal products</option>
<option>Fence armor (post caps / guards)</option>
<option>Glass railing</option>
<option>Ornamental / iron fence</option>
<option>Temporary fence rental</option>
<option>Multiple products</option>
</select>
</div>
<div className="form-row">
<div className="form-group">
<label className="form-label">Job site city</label>
<input className="form-input" type="text" placeholder="Kitchener, Guelph..." />
</div>
<div className="form-group">
<label className="form-label">Approximate quantity</label>
<input className="form-input" type="text" placeholder="e.g. 200 linear ft" />
</div>
</div>
<button className="form-submit">Send quote request </button>
<div className="form-note">Or call us directly · info@vgfenceproducts.com</div>
</div>
</div>
</section>
{/* TRUST BAR */}
<div className="trust-bar">
<div className="trust-item"><span className="trust-icon">🚚</span> Same-day job site delivery</div>
<div className="trust-item"><span className="trust-icon">📐</span> 2D fence drawing services</div>
<div className="trust-item"><span className="trust-icon">🏗</span> Contractor accounts available</div>
<div className="trust-item"><span className="trust-icon">📍</span> Serving 250km across Ontario</div>
<div className="trust-item"><span className="trust-icon"></span> 3+ years serving KWC</div>
</div>
{/* PRODUCTS PREVIEW */}
<section className="products-section" id="products">
<div className="products-header">
<div>
<div className="section-eyebrow">Our products</div>
<h2 className="section-h2">Everything you<br />need to <span>build.</span></h2>
</div>
<p style={{ fontSize: '15px', color: 'var(--gray-600)', maxWidth: '340px', lineHeight: '1.7' }}>
Nine product lines in stock, ready for same-day or scheduled delivery to your job site anywhere in our 250km radius.
</p>
</div>
<div className="products-grid">
{/* Card 1 */}
<Link href="/products" className="product-card">
<div className="product-icon">
<svg viewBox="0 0 22 22" fill="none"><rect x="1" y="3" width="3" height="16" rx="1.5" fill="white" /><rect x="9" y="3" width="3" height="16" rx="1.5" fill="white" /><rect x="17" y="3" width="3" height="16" rx="1.5" fill="white" /><line x1="1" y1="8" x2="20" y2="8" stroke="white" strokeWidth="1.5" /><line x1="1" y1="13" x2="20" y2="13" stroke="white" strokeWidth="1.5" /></svg>
</div>
<div className="product-name">Aluminum railing</div>
<div className="product-desc">Residential and commercial aluminum railing systems for decks, balconies, stairs, and pools.</div>
<div className="product-tags"><span className="product-tag">Residential</span><span className="product-tag">Commercial</span></div>
<div className="product-arrow"></div>
</Link>
{/* Card 2 */}
<Link href="/products" className="product-card">
<div className="product-icon">
<svg viewBox="0 0 22 22" fill="none"><rect x="2" y="3" width="3" height="16" rx="1.5" fill="white" /><rect x="17" y="3" width="3" height="16" rx="1.5" fill="white" /><line x1="2" y1="8" x2="20" y2="8" stroke="white" strokeWidth="1.5" /><line x1="2" y1="13" x2="20" y2="13" stroke="white" strokeWidth="1.5" /><line x1="8" y1="3" x2="8" y2="19" stroke="white" strokeWidth="1.5" /><line x1="14" y1="3" x2="14" y2="19" stroke="white" strokeWidth="1.5" /></svg>
</div>
<div className="product-name">Chain link fence</div>
<div className="product-desc">Commercial and residential chain link in black and galvanized finishes. High volume, quick delivery.</div>
<div className="product-tags"><span className="product-tag">Black</span><span className="product-tag">Galvanized</span><span className="product-tag">Commercial</span></div>
<div className="product-arrow"></div>
</Link>
{/* Card 3 */}
<div className="product-card" style={{ background: 'var(--navy)' }}>
<div style={{ height: '100%', display: 'flex', flexDirection: 'column', justifyContent: 'space-between' }}>
<div>
<div style={{ fontFamily: 'var(--font-display)', fontSize: '13px', fontWeight: 700, letterSpacing: '.08em', textTransform: 'uppercase', color: 'var(--orange)', marginBottom: '16px' }}>Need a custom quote?</div>
<div style={{ fontFamily: 'var(--font-display)', fontSize: '26px', fontWeight: 800, textTransform: 'uppercase', color: 'var(--white)', lineHeight: 1.1, marginBottom: '12px' }}>Talk to our<br />supply team.</div>
<div style={{ fontSize: '13px', color: 'rgba(255,255,255,.55)', lineHeight: 1.6 }}>Bulk orders · Contractor accounts · Scheduled deliveries · Job site planning</div>
</div>
<Link href="/#quote" className="btn-primary" style={{ textAlign: 'center', marginTop: '24px', display: 'block' }}>Request pricing </Link>
</div>
</div>
</div>
</section>
{/* SERVICES */}
<section className="services-section" id="services">
<div className="section-eyebrow" style={{ color: 'rgba(255,255,255,.5)' }}>
What we do
</div>
<h2 className="section-h2">More than just <span>supply.</span></h2>
<div className="services-grid">
<div className="service-card">
<div className="service-num">01</div>
<div className="service-name">2D Fence <span>Drawing Services</span></div>
<div className="service-desc">CAD-based fence layout drawings for residential and commercial projects.</div>
<ul className="service-list">
<li>Residential & commercial layouts</li>
<li>Material takeoff & quantity estimation</li>
<li>Permit support drawings</li>
</ul>
</div>
<div className="service-card">
<div className="service-num">02</div>
<div className="service-name">Wood <span>Staining Services</span></div>
<div className="service-desc">Professional application of Expert Stain & Seal products on outdoor structures.</div>
<ul className="service-list">
<li>Fence, deck & pergola staining</li>
<li>New wood preparation & staining</li>
<li>Maintenance & restoration</li>
</ul>
</div>
</div>
</section>
{/* TERRITORY */}
<section className="territory-section" id="territory">
<div className="section-eyebrow">Quick Delivery</div>
<h2 className="section-h2">Across <span>Ontario.</span></h2>
<div className="territory-layout">
<div className="city-list">
<div className="city-item">
<div className="city-dot home"></div>
<div className="city-info">
<div className="city-name-txt">Kitchner / Waterloo</div>
<div className="city-sub-txt">Home Depot & Job Site Base</div>
</div>
<div className="city-dist-badge">BASE</div>
</div>
<div className="city-item">
<div className="city-dot near"></div>
<div className="city-info">
<div className="city-name-txt">Guelph / Cambridge</div>
<div className="city-sub-txt">Immediate 1-hour Delivery</div>
</div>
<div className="city-dist-badge">20KM</div>
</div>
<div className="city-item">
<div className="city-dot far"></div>
<div className="city-info">
<div className="city-name-txt">Toronto / GTA</div>
<div className="city-sub-txt">Same-day Delivery Available</div>
</div>
<div className="city-dist-badge">110KM</div>
</div>
</div>
<div className="territory-map-wrap">
<div className="radius-label">250km Service Radius</div>
<div style={{ height: '300px', background: 'var(--gray-100)', borderRadius: '8px', display: 'flex', alignItems: 'center', justifyCenter: 'center', color: 'var(--gray-400)', fontSize: '14px' }}>
[Interactive Region Map Integration]
</div>
</div>
</div>
</section>
{/* CTA */}
<section className="cta-section">
<h2 className="cta-h2">Ready to <span>start?</span></h2>
<p className="cta-sub">Join hundreds of Ontario contractors who trust VG Fence for their supply needs.</p>
<div className="cta-btns">
<Link href="/login" className="btn-white">Create Account</Link>
<Link href="/#quote" className="btn-white-outline">Get a Quote Now</Link>
</div>
</section>
</>
);
}

48
components/Footer.tsx Normal file
View File

@ -0,0 +1,48 @@
import Link from 'next/link';
export default function Footer() {
return (
<footer>
<div className="footer-top">
<div>
<div className="footer-brand-name">VG FENCE <span>PRODUCTS</span></div>
<p className="footer-tagline">Ontario's B2B Fence Supply Partner. Premium quality, same-day delivery.</p>
<div className="footer-contact">
<a href="mailto:info@vgfenceproducts.com">info@vgfenceproducts.com</a>
<a href="tel:5190000000">(519) 000-0000</a>
</div>
<div className="footer-territory">Serving 250km across Ontario</div>
</div>
<div>
<div className="footer-col-title">Solutions</div>
<ul className="footer-links">
<li><Link href="/products">Aluminum Railing</Link></li>
<li><Link href="/products">Chain Link Fence</Link></li>
<li><Link href="/products">Composite Fences</Link></li>
<li><Link href="/products">Glass Railing</Link></li>
</ul>
</div>
<div>
<div className="footer-col-title">Company</div>
<ul className="footer-links">
<li><Link href="/#about">About Us</Link></li>
<li><Link href="/#services">Services</Link></li>
<li><Link href="/#territory">Territory</Link></li>
<li><Link href="/#quote">Request Quote</Link></li>
</ul>
</div>
<div>
<div className="footer-col-title">Account</div>
<ul className="footer-links">
<li><Link href="/login">Contractor Login</Link></li>
<li><Link href="/login">Register</Link></li>
</ul>
</div>
</div>
<div className="footer-bottom">
<div>&copy; {new Date().getFullYear()} VG Fence Products. All rights reserved.</div>
<div>Privacy Policy &bull; Terms of Service</div>
</div>
</footer>
);
}

20
components/Navbar.tsx Normal file
View File

@ -0,0 +1,20 @@
import Link from 'next/link';
export default function Navbar() {
return (
<nav>
<Link href="/" className="nav-logo">
<div className="logo-mark">VG</div>
<div className="logo-text">FENCE <span>PRODUCTS</span></div>
</Link>
<ul className="nav-links">
<li><Link href="/">Home</Link></li>
<li><Link href="/products">Products</Link></li>
<li><Link href="/#services">Services</Link></li>
<li><Link href="/#territory">Territory</Link></li>
<li><Link href="/login">Login</Link></li>
</ul>
<Link href="/#quote" className="nav-cta">Get a quote</Link>
</nav>
);
}

18
eslint.config.mjs Normal file
View File

@ -0,0 +1,18 @@
import { defineConfig, globalIgnores } from "eslint/config";
import nextVitals from "eslint-config-next/core-web-vitals";
import nextTs from "eslint-config-next/typescript";
const eslintConfig = defineConfig([
...nextVitals,
...nextTs,
// Override default ignores of eslint-config-next.
globalIgnores([
// Default ignores of eslint-config-next:
".next/**",
"out/**",
"build/**",
"next-env.d.ts",
]),
]);
export default eslintConfig;

7
next.config.ts Normal file
View File

@ -0,0 +1,7 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
};
export default nextConfig;

5933
package-lock.json generated Normal file

File diff suppressed because it is too large Load Diff

24
package.json Normal file
View File

@ -0,0 +1,24 @@
{
"name": "vgfence-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint"
},
"dependencies": {
"next": "16.2.4",
"react": "19.2.4",
"react-dom": "19.2.4"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.2.4",
"typescript": "^5"
}
}

1
public/file.svg Normal file
View File

@ -0,0 +1 @@
<svg fill="none" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><path d="M14.5 13.5V5.41a1 1 0 0 0-.3-.7L9.8.29A1 1 0 0 0 9.08 0H1.5v13.5A2.5 2.5 0 0 0 4 16h8a2.5 2.5 0 0 0 2.5-2.5m-1.5 0v-7H8v-5H3v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1M9.5 5V2.12L12.38 5zM5.13 5h-.62v1.25h2.12V5zm-.62 3h7.12v1.25H4.5zm.62 3h-.62v1.25h7.12V11z" clip-rule="evenodd" fill="#666" fill-rule="evenodd"/></svg>

After

Width:  |  Height:  |  Size: 391 B

1
public/globe.svg Normal file
View File

@ -0,0 +1 @@
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><g clip-path="url(#a)"><path fill-rule="evenodd" clip-rule="evenodd" d="M10.27 14.1a6.5 6.5 0 0 0 3.67-3.45q-1.24.21-2.7.34-.31 1.83-.97 3.1M8 16A8 8 0 1 0 8 0a8 8 0 0 0 0 16m.48-1.52a7 7 0 0 1-.96 0H7.5a4 4 0 0 1-.84-1.32q-.38-.89-.63-2.08a40 40 0 0 0 3.92 0q-.25 1.2-.63 2.08a4 4 0 0 1-.84 1.31zm2.94-4.76q1.66-.15 2.95-.43a7 7 0 0 0 0-2.58q-1.3-.27-2.95-.43a18 18 0 0 1 0 3.44m-1.27-3.54a17 17 0 0 1 0 3.64 39 39 0 0 1-4.3 0 17 17 0 0 1 0-3.64 39 39 0 0 1 4.3 0m1.1-1.17q1.45.13 2.69.34a6.5 6.5 0 0 0-3.67-3.44q.65 1.26.98 3.1M8.48 1.5l.01.02q.41.37.84 1.31.38.89.63 2.08a40 40 0 0 0-3.92 0q.25-1.2.63-2.08a4 4 0 0 1 .85-1.32 7 7 0 0 1 .96 0m-2.75.4a6.5 6.5 0 0 0-3.67 3.44 29 29 0 0 1 2.7-.34q.31-1.83.97-3.1M4.58 6.28q-1.66.16-2.95.43a7 7 0 0 0 0 2.58q1.3.27 2.95.43a18 18 0 0 1 0-3.44m.17 4.71q-1.45-.12-2.69-.34a6.5 6.5 0 0 0 3.67 3.44q-.65-1.27-.98-3.1" fill="#666"/></g><defs><clipPath id="a"><path fill="#fff" d="M0 0h16v16H0z"/></clipPath></defs></svg>

After

Width:  |  Height:  |  Size: 1.0 KiB

1
public/next.svg Normal file
View File

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 394 80"><path fill="#000" d="M262 0h68.5v12.7h-27.2v66.6h-13.6V12.7H262V0ZM149 0v12.7H94v20.4h44.3v12.6H94v21h55v12.6H80.5V0h68.7zm34.3 0h-17.8l63.8 79.4h17.9l-32-39.7 32-39.6h-17.9l-23 28.6-23-28.6zm18.3 56.7-9-11-27.1 33.7h17.8l18.3-22.7z"/><path fill="#000" d="M81 79.3 17 0H0v79.3h13.6V17l50.2 62.3H81Zm252.6-.4c-1 0-1.8-.4-2.5-1s-1.1-1.6-1.1-2.6.3-1.8 1-2.5 1.6-1 2.6-1 1.8.3 2.5 1a3.4 3.4 0 0 1 .6 4.3 3.7 3.7 0 0 1-3 1.8zm23.2-33.5h6v23.3c0 2.1-.4 4-1.3 5.5a9.1 9.1 0 0 1-3.8 3.5c-1.6.8-3.5 1.3-5.7 1.3-2 0-3.7-.4-5.3-1s-2.8-1.8-3.7-3.2c-.9-1.3-1.4-3-1.4-5h6c.1.8.3 1.6.7 2.2s1 1.2 1.6 1.5c.7.4 1.5.5 2.4.5 1 0 1.8-.2 2.4-.6a4 4 0 0 0 1.6-1.8c.3-.8.5-1.8.5-3V45.5zm30.9 9.1a4.4 4.4 0 0 0-2-3.3 7.5 7.5 0 0 0-4.3-1.1c-1.3 0-2.4.2-3.3.5-.9.4-1.6 1-2 1.6a3.5 3.5 0 0 0-.3 4c.3.5.7.9 1.3 1.2l1.8 1 2 .5 3.2.8c1.3.3 2.5.7 3.7 1.2a13 13 0 0 1 3.2 1.8 8.1 8.1 0 0 1 3 6.5c0 2-.5 3.7-1.5 5.1a10 10 0 0 1-4.4 3.5c-1.8.8-4.1 1.2-6.8 1.2-2.6 0-4.9-.4-6.8-1.2-2-.8-3.4-2-4.5-3.5a10 10 0 0 1-1.7-5.6h6a5 5 0 0 0 3.5 4.6c1 .4 2.2.6 3.4.6 1.3 0 2.5-.2 3.5-.6 1-.4 1.8-1 2.4-1.7a4 4 0 0 0 .8-2.4c0-.9-.2-1.6-.7-2.2a11 11 0 0 0-2.1-1.4l-3.2-1-3.8-1c-2.8-.7-5-1.7-6.6-3.2a7.2 7.2 0 0 1-2.4-5.7 8 8 0 0 1 1.7-5 10 10 0 0 1 4.3-3.5c2-.8 4-1.2 6.4-1.2 2.3 0 4.4.4 6.2 1.2 1.8.8 3.2 2 4.3 3.4 1 1.4 1.5 3 1.5 5h-5.8z"/></svg>

After

Width:  |  Height:  |  Size: 1.3 KiB

1
public/vercel.svg Normal file
View File

@ -0,0 +1 @@
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1155 1000"><path d="m577.3 0 577.4 1000H0z" fill="#fff"/></svg>

After

Width:  |  Height:  |  Size: 128 B

1
public/window.svg Normal file
View File

@ -0,0 +1 @@
<svg fill="none" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill-rule="evenodd" clip-rule="evenodd" d="M1.5 2.5h13v10a1 1 0 0 1-1 1h-11a1 1 0 0 1-1-1zM0 1h16v11.5a2.5 2.5 0 0 1-2.5 2.5h-11A2.5 2.5 0 0 1 0 12.5zm3.75 4.5a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5M7 4.75a.75.75 0 1 1-1.5 0 .75.75 0 0 1 1.5 0m1.75.75a.75.75 0 1 0 0-1.5.75.75 0 0 0 0 1.5" fill="#666"/></svg>

After

Width:  |  Height:  |  Size: 385 B

34
tsconfig.json Normal file
View File

@ -0,0 +1,34 @@
{
"compilerOptions": {
"target": "ES2017",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
".next/dev/types/**/*.ts",
"**/*.mts"
],
"exclude": ["node_modules"]
}