Initial commit files
1
.eslintignore
Normal file
@@ -0,0 +1 @@
|
|||||||
|
demo.artureanec.com 2/
|
||||||
284
AGENTS.md
@@ -3,3 +3,287 @@
|
|||||||
|
|
||||||
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.
|
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 -->
|
<!-- END:nextjs-agent-rules -->
|
||||||
|
|
||||||
|
# Code Maintainability Rules
|
||||||
|
|
||||||
|
This project must remain understandable by:
|
||||||
|
|
||||||
|
- Freshers
|
||||||
|
- Frontend developers
|
||||||
|
- Backend developers
|
||||||
|
- New team members
|
||||||
|
|
||||||
|
Rules:
|
||||||
|
|
||||||
|
1. No component may exceed 400 lines.
|
||||||
|
2. No page file may exceed 300 lines.
|
||||||
|
3. No CSS file may exceed 500 lines.
|
||||||
|
4. Prefer Tailwind utilities over custom CSS.
|
||||||
|
5. Avoid duplicated styles.
|
||||||
|
6. Create reusable UI components.
|
||||||
|
7. Use meaningful file names.
|
||||||
|
8. Keep folder depth shallow.
|
||||||
|
9. Avoid massive utility/helper files.
|
||||||
|
10. Every component should have a single responsibility.
|
||||||
|
|
||||||
|
If a file becomes too large, split it into smaller components immediately.
|
||||||
|
|
||||||
|
Code readability is more important than clever implementations.
|
||||||
|
|
||||||
|
# Design System Rules
|
||||||
|
|
||||||
|
## Single Source of Truth
|
||||||
|
|
||||||
|
Common design values must be centralized.
|
||||||
|
|
||||||
|
Do NOT hardcode the same values across multiple sections.
|
||||||
|
|
||||||
|
Create shared design tokens for:
|
||||||
|
|
||||||
|
* Colors
|
||||||
|
* Typography
|
||||||
|
* Border Radius
|
||||||
|
* Shadows
|
||||||
|
* Container Widths
|
||||||
|
* Section Spacing
|
||||||
|
* Button Styles
|
||||||
|
* Animation Presets
|
||||||
|
|
||||||
|
## Color System
|
||||||
|
|
||||||
|
All colors must come from a shared theme file.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
* Primary
|
||||||
|
* Secondary
|
||||||
|
* Accent
|
||||||
|
* Background
|
||||||
|
* Surface
|
||||||
|
* Border
|
||||||
|
|
||||||
|
Do not repeat hex values throughout the project.
|
||||||
|
|
||||||
|
Changing a color in one place should update the entire site.
|
||||||
|
|
||||||
|
## Typography System
|
||||||
|
|
||||||
|
Create shared typography styles.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
* Hero Title
|
||||||
|
* Section Title
|
||||||
|
* Card Title
|
||||||
|
* Body Text
|
||||||
|
* Small Text
|
||||||
|
|
||||||
|
Do not redefine font sizes in every section.
|
||||||
|
|
||||||
|
Changing typography tokens should update all matching sections.
|
||||||
|
|
||||||
|
## Shared Components
|
||||||
|
|
||||||
|
If multiple sections use the same UI pattern:
|
||||||
|
|
||||||
|
* Card
|
||||||
|
* Button
|
||||||
|
* Badge
|
||||||
|
* Section Header
|
||||||
|
* CTA Block
|
||||||
|
* Statistic Counter
|
||||||
|
|
||||||
|
Create one reusable component.
|
||||||
|
|
||||||
|
Do not duplicate markup.
|
||||||
|
|
||||||
|
A change in one component should update every instance.
|
||||||
|
|
||||||
|
## Shared Section Layout
|
||||||
|
|
||||||
|
Create common section spacing tokens.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
* sectionPaddingY
|
||||||
|
* sectionPaddingX
|
||||||
|
* containerWidth
|
||||||
|
|
||||||
|
All sections must use the same spacing system.
|
||||||
|
|
||||||
|
Avoid custom padding per section unless intentionally required by the reference.
|
||||||
|
|
||||||
|
## Consistent Container System
|
||||||
|
|
||||||
|
All major sections must use the same container.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
* Container
|
||||||
|
* PageContainer
|
||||||
|
* SectionContainer
|
||||||
|
|
||||||
|
Do not create unique widths for every section.
|
||||||
|
|
||||||
|
## Shared Animation System
|
||||||
|
|
||||||
|
Create reusable animation presets.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
* fadeUp
|
||||||
|
* staggerChildren
|
||||||
|
* scaleIn
|
||||||
|
* slideIn
|
||||||
|
|
||||||
|
Do not redefine animations in every component.
|
||||||
|
|
||||||
|
## Shared Image System
|
||||||
|
|
||||||
|
Common image styles should be reusable.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
* cardImage
|
||||||
|
* heroImage
|
||||||
|
* avatarImage
|
||||||
|
|
||||||
|
Avoid repeating image styling logic.
|
||||||
|
|
||||||
|
## Global Change Rule
|
||||||
|
|
||||||
|
If the same pattern exists in multiple sections, do not update only one section.
|
||||||
|
|
||||||
|
Examples:
|
||||||
|
|
||||||
|
* Hero Title
|
||||||
|
* About Title
|
||||||
|
* Feature Title
|
||||||
|
|
||||||
|
Update the shared source.
|
||||||
|
|
||||||
|
The change must automatically propagate everywhere the pattern is used.
|
||||||
|
|
||||||
|
## Spacing Consistency Rule
|
||||||
|
|
||||||
|
Top, Bottom, Left, and Right spacing must follow the same design system.
|
||||||
|
|
||||||
|
Avoid random values such as:
|
||||||
|
|
||||||
|
* 72px
|
||||||
|
* 94px
|
||||||
|
* 113px
|
||||||
|
* 147px
|
||||||
|
|
||||||
|
Use predefined spacing tokens only.
|
||||||
|
|
||||||
|
The entire site should feel visually consistent.
|
||||||
|
|
||||||
|
# AGENTS.md
|
||||||
|
|
||||||
|
## Mission
|
||||||
|
|
||||||
|
Recreate the Aiero Home 9 experience with maximum visual fidelity while keeping the codebase maintainable and production-ready.
|
||||||
|
|
||||||
|
## Agent Behavior
|
||||||
|
|
||||||
|
Before making changes:
|
||||||
|
|
||||||
|
* Analyze existing component
|
||||||
|
* Compare against reference
|
||||||
|
* Identify exact mismatch
|
||||||
|
* Apply minimal fix
|
||||||
|
|
||||||
|
Do not perform large rewrites unless explicitly requested.
|
||||||
|
|
||||||
|
## Priority Order
|
||||||
|
|
||||||
|
1. Layout Accuracy
|
||||||
|
2. Spacing Accuracy
|
||||||
|
3. Typography Accuracy
|
||||||
|
4. Image Placement
|
||||||
|
5. Responsiveness
|
||||||
|
6. Animation
|
||||||
|
7. Refactoring
|
||||||
|
|
||||||
|
## Hero Analysis Checklist
|
||||||
|
|
||||||
|
Verify:
|
||||||
|
|
||||||
|
* Hero height
|
||||||
|
* Hero width
|
||||||
|
* Artwork scale
|
||||||
|
* Artwork position
|
||||||
|
* Heading width
|
||||||
|
* Heading line breaks
|
||||||
|
* CTA placement
|
||||||
|
* Scroll indicator position
|
||||||
|
* Navbar alignment
|
||||||
|
|
||||||
|
## Card Analysis Checklist
|
||||||
|
|
||||||
|
Verify:
|
||||||
|
|
||||||
|
* Border radius
|
||||||
|
* Padding
|
||||||
|
* Image crop
|
||||||
|
* Text spacing
|
||||||
|
* Card proportions
|
||||||
|
* Responsive behavior
|
||||||
|
|
||||||
|
## Forbidden Actions
|
||||||
|
|
||||||
|
Do NOT:
|
||||||
|
|
||||||
|
* Replace sections without approval
|
||||||
|
* Change color system globally
|
||||||
|
* Introduce new layouts
|
||||||
|
* Remove existing functionality
|
||||||
|
* Rewrite working components
|
||||||
|
|
||||||
|
## Preferred Workflow
|
||||||
|
|
||||||
|
Step 1:
|
||||||
|
Identify mismatch.
|
||||||
|
|
||||||
|
Step 2:
|
||||||
|
Describe mismatch.
|
||||||
|
|
||||||
|
Step 3:
|
||||||
|
Implement targeted fix.
|
||||||
|
|
||||||
|
Step 4:
|
||||||
|
Verify visually.
|
||||||
|
|
||||||
|
Step 5:
|
||||||
|
Move to next issue.
|
||||||
|
|
||||||
|
## Visual Fidelity Standard
|
||||||
|
|
||||||
|
Target:
|
||||||
|
|
||||||
|
95%+ match to reference.
|
||||||
|
|
||||||
|
Every change should improve:
|
||||||
|
|
||||||
|
* Layout
|
||||||
|
* Alignment
|
||||||
|
* Proportions
|
||||||
|
* Visual balance
|
||||||
|
|
||||||
|
Avoid subjective redesign decisions.
|
||||||
|
|
||||||
|
Reference fidelity is more important than personal preference.
|
||||||
|
|
||||||
|
## Code Quality Rules
|
||||||
|
|
||||||
|
* TypeScript strict
|
||||||
|
* Reusable components
|
||||||
|
* Clean props
|
||||||
|
* No duplicated code
|
||||||
|
* No inline magic values
|
||||||
|
* Use Tailwind consistently
|
||||||
|
|
||||||
|
## Final Goal
|
||||||
|
|
||||||
|
Build a production-quality Next.js implementation that visually matches Aiero Home 9 as closely as possible while maintaining clean architecture and long-term maintainability.
|
||||||
|
|||||||
146
CLAUDE.md
@@ -1 +1,147 @@
|
|||||||
@AGENTS.md
|
@AGENTS.md
|
||||||
|
# CLAUDE.md
|
||||||
|
|
||||||
|
## Project Overview
|
||||||
|
|
||||||
|
This project is a high-fidelity recreation of the Aiero Home 9 landing page using Next.js App Router, TypeScript, Tailwind CSS, and Framer Motion.
|
||||||
|
|
||||||
|
The goal is NOT to redesign the page.
|
||||||
|
|
||||||
|
The goal is to accurately reproduce the visual hierarchy, layout structure, spacing system, card architecture, typography scale, and responsive behavior of the reference implementation.
|
||||||
|
|
||||||
|
## Core Rules
|
||||||
|
|
||||||
|
1. Preserve visual fidelity.
|
||||||
|
2. Avoid unnecessary redesigns.
|
||||||
|
3. Prefer refinement over replacement.
|
||||||
|
4. Maintain existing component architecture.
|
||||||
|
5. Never replace working sections with completely new layouts.
|
||||||
|
|
||||||
|
## Design System Rules
|
||||||
|
|
||||||
|
Common design decisions must come from shared sources, not repeated one-off values.
|
||||||
|
|
||||||
|
Centralize:
|
||||||
|
|
||||||
|
* Colors
|
||||||
|
* Typography
|
||||||
|
* Border radius
|
||||||
|
* Shadows
|
||||||
|
* Container widths
|
||||||
|
* Section spacing
|
||||||
|
* Button styles
|
||||||
|
* Animation presets
|
||||||
|
* Image styles
|
||||||
|
|
||||||
|
Use reusable components for repeated patterns such as cards, buttons, badges, section headers, CTA blocks, and statistic counters.
|
||||||
|
|
||||||
|
All major sections should use the shared container and spacing system. Avoid random spacing values such as 72px, 94px, 113px, or 147px unless the reference requires a deliberate exception.
|
||||||
|
|
||||||
|
When the same pattern appears in multiple sections, update the shared token, component, or preset so the change propagates everywhere.
|
||||||
|
|
||||||
|
## Design Philosophy
|
||||||
|
|
||||||
|
The homepage is:
|
||||||
|
|
||||||
|
* Editorial
|
||||||
|
* Card-driven
|
||||||
|
* Visual-first
|
||||||
|
* Premium AI agency
|
||||||
|
* Image-heavy
|
||||||
|
* Modern but minimal
|
||||||
|
|
||||||
|
Avoid:
|
||||||
|
|
||||||
|
* Generic SaaS layouts
|
||||||
|
* Dashboard-first designs
|
||||||
|
* Startup template aesthetics
|
||||||
|
* Excessive gradients
|
||||||
|
* Excessive glassmorphism
|
||||||
|
|
||||||
|
## Hero Section Requirements
|
||||||
|
|
||||||
|
Hero is the most important section.
|
||||||
|
|
||||||
|
Must maintain:
|
||||||
|
|
||||||
|
* Large background artwork
|
||||||
|
* Left aligned content
|
||||||
|
* Vertical Scroll Down element
|
||||||
|
* Large heading
|
||||||
|
* Compact CTA
|
||||||
|
|
||||||
|
Hero artwork should dominate visual composition.
|
||||||
|
|
||||||
|
Target ratio:
|
||||||
|
|
||||||
|
70% visual
|
||||||
|
30% content
|
||||||
|
|
||||||
|
## Card Layout Rules
|
||||||
|
|
||||||
|
Cards should:
|
||||||
|
|
||||||
|
* Use large border radii
|
||||||
|
* Have consistent spacing
|
||||||
|
* Maintain editorial proportions
|
||||||
|
* Feel like magazine blocks
|
||||||
|
|
||||||
|
Do not:
|
||||||
|
|
||||||
|
* Make all cards equal height
|
||||||
|
* Convert cards into dashboard widgets
|
||||||
|
* Add unnecessary statistics
|
||||||
|
|
||||||
|
## Typography Rules
|
||||||
|
|
||||||
|
Headings:
|
||||||
|
|
||||||
|
* Strong
|
||||||
|
* Bold
|
||||||
|
* Editorial
|
||||||
|
|
||||||
|
Body text:
|
||||||
|
|
||||||
|
* Simple
|
||||||
|
* Readable
|
||||||
|
* Secondary
|
||||||
|
|
||||||
|
Avoid oversized line lengths.
|
||||||
|
|
||||||
|
## Animations
|
||||||
|
|
||||||
|
Use subtle animations only.
|
||||||
|
|
||||||
|
Allowed:
|
||||||
|
|
||||||
|
* Fade up
|
||||||
|
* Hover lift
|
||||||
|
* Opacity transitions
|
||||||
|
* Small parallax
|
||||||
|
|
||||||
|
Avoid:
|
||||||
|
|
||||||
|
* Excessive motion
|
||||||
|
* Heavy GSAP timelines
|
||||||
|
* Distracting effects
|
||||||
|
|
||||||
|
## Responsive Rules
|
||||||
|
|
||||||
|
Desktop design is source of truth.
|
||||||
|
|
||||||
|
Then adapt:
|
||||||
|
|
||||||
|
Desktop → Tablet → Mobile
|
||||||
|
|
||||||
|
Never design mobile first and then stretch to desktop.
|
||||||
|
|
||||||
|
## Development Rules
|
||||||
|
|
||||||
|
Before modifying a section:
|
||||||
|
|
||||||
|
1. Inspect existing implementation.
|
||||||
|
2. Compare with reference.
|
||||||
|
3. Make minimal changes.
|
||||||
|
4. Preserve working behavior.
|
||||||
|
|
||||||
|
Always prefer small iterative improvements.
|
||||||
|
|||||||
313
app/globals.css
@@ -1,26 +1,311 @@
|
|||||||
@import "tailwindcss";
|
@import "tailwindcss";
|
||||||
|
|
||||||
:root {
|
:root {
|
||||||
--background: #ffffff;
|
/* ── Aiero color tokens (extracted from source) ── */
|
||||||
--foreground: #171717;
|
--aiero-bg-dark: #1F1F1F;
|
||||||
|
--aiero-bg-card-dark: #282828;
|
||||||
|
--aiero-bg-card-border: #3F3F3F;
|
||||||
|
--aiero-accent-teal: #45D0BD;
|
||||||
|
--aiero-accent-blue: #44B6E9;
|
||||||
|
--aiero-accent-red: #EF6464;
|
||||||
|
--aiero-accent-red-hover: #F57E7E;
|
||||||
|
--aiero-purple-start: #8258C8;
|
||||||
|
--aiero-purple-mid: #6766C8;
|
||||||
|
--aiero-purple-end: #2C84C8;
|
||||||
|
--aiero-card-purple: #343F78;
|
||||||
|
--aiero-card-purple-2: #56619E;
|
||||||
|
--aiero-card-lavender: #AC8DE0;
|
||||||
|
--aiero-text-muted: #87899B;
|
||||||
|
|
||||||
|
/* button gradient angles */
|
||||||
|
--button-border-gradient-angle: 92deg;
|
||||||
|
--button-gradient-colorstop-1: 0%;
|
||||||
|
--button-gradient-colorstop-2: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
@theme inline {
|
@theme inline {
|
||||||
--color-background: var(--background);
|
--color-background: #ffffff;
|
||||||
--color-foreground: var(--foreground);
|
--color-foreground: #1F1F1F;
|
||||||
--font-sans: var(--font-geist-sans);
|
--color-aiero-dark: #1F1F1F;
|
||||||
--font-mono: var(--font-geist-mono);
|
--color-aiero-card-dark: #282828;
|
||||||
|
--color-aiero-card-border: #3F3F3F;
|
||||||
|
--color-aiero-teal: #45D0BD;
|
||||||
|
--color-aiero-blue: #44B6E9;
|
||||||
|
--color-aiero-red: #EF6464;
|
||||||
|
--color-aiero-red-hover: #F57E7E;
|
||||||
|
--color-aiero-purple-start: #8258C8;
|
||||||
|
--color-aiero-purple-mid: #6766C8;
|
||||||
|
--color-aiero-purple-end: #2C84C8;
|
||||||
|
--color-aiero-card-purple: #343F78;
|
||||||
|
--color-aiero-card-purple-2: #56619E;
|
||||||
|
--color-aiero-card-lavender: #AC8DE0;
|
||||||
|
--color-aiero-text-muted: #87899B;
|
||||||
|
|
||||||
|
--font-sans: var(--font-manrope), ui-sans-serif, system-ui, sans-serif;
|
||||||
|
--font-sora: var(--font-sora), sans-serif;
|
||||||
|
--font-dm-sans: var(--font-dm-sans), sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
/* ── Base resets ── */
|
||||||
:root {
|
* {
|
||||||
--background: #0a0a0a;
|
box-sizing: border-box;
|
||||||
--foreground: #ededed;
|
-webkit-font-smoothing: antialiased;
|
||||||
}
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
}
|
||||||
|
|
||||||
|
html {
|
||||||
|
scroll-behavior: smooth;
|
||||||
|
background: #ffffff;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
background: var(--background);
|
min-height: 100vh;
|
||||||
color: var(--foreground);
|
overflow-x: hidden;
|
||||||
font-family: Arial, Helvetica, sans-serif;
|
background: #ffffff;
|
||||||
|
color: #1F1F1F;
|
||||||
|
font-family: var(--font-manrope), ui-sans-serif, system-ui, sans-serif;
|
||||||
|
font-size: 16px;
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
a,
|
||||||
|
button {
|
||||||
|
-webkit-tap-highlight-color: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ── Aiero button base ── */
|
||||||
|
.aiero-button {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
font-family: var(--font-sora), sans-serif;
|
||||||
|
text-decoration: none;
|
||||||
|
position: relative;
|
||||||
|
overflow: hidden;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
cursor: pointer;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aiero-button .button-inner {
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
border-radius: inherit;
|
||||||
|
pointer-events: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Solid variant */
|
||||||
|
.aiero-button-solid {
|
||||||
|
border-style: solid;
|
||||||
|
border-width: 1px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Gradient border variant */
|
||||||
|
.aiero-button-gradient-border {
|
||||||
|
background: transparent;
|
||||||
|
border: none;
|
||||||
|
position: relative;
|
||||||
|
z-index: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aiero-button-gradient-border::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
border-radius: inherit;
|
||||||
|
padding: 1.5px;
|
||||||
|
background: linear-gradient(
|
||||||
|
var(--button-border-gradient-angle),
|
||||||
|
var(--aiero-accent-teal) var(--button-gradient-colorstop-1),
|
||||||
|
var(--aiero-accent-blue) var(--button-gradient-colorstop-2)
|
||||||
|
);
|
||||||
|
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
|
||||||
|
-webkit-mask-composite: xor;
|
||||||
|
mask-composite: exclude;
|
||||||
|
pointer-events: none;
|
||||||
|
z-index: -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aiero-button-gradient-border .button-inner::before {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
border-radius: inherit;
|
||||||
|
background: transparent;
|
||||||
|
transition: all 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aiero-button-gradient-border .button-inner::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
border-radius: inherit;
|
||||||
|
background: linear-gradient(
|
||||||
|
var(--button-border-gradient-angle),
|
||||||
|
var(--aiero-accent-teal) var(--button-gradient-colorstop-1),
|
||||||
|
var(--aiero-accent-blue) var(--button-gradient-colorstop-2)
|
||||||
|
);
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity 0.3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aiero-button-gradient-border:hover .button-inner::after {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aiero-button-gradient-border:hover {
|
||||||
|
color: #333333;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Gradient fill variant */
|
||||||
|
.aiero-button-gradient-fill {
|
||||||
|
background: linear-gradient(
|
||||||
|
var(--button-border-gradient-angle),
|
||||||
|
var(--aiero-accent-teal) var(--button-gradient-colorstop-1),
|
||||||
|
var(--aiero-accent-blue) var(--button-gradient-colorstop-2)
|
||||||
|
);
|
||||||
|
border: none;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aiero-button-gradient-fill::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
inset: 0;
|
||||||
|
border-radius: inherit;
|
||||||
|
padding: 1.5px;
|
||||||
|
background: linear-gradient(
|
||||||
|
var(--button-border-gradient-angle),
|
||||||
|
var(--aiero-accent-teal) var(--button-gradient-colorstop-1),
|
||||||
|
var(--aiero-accent-blue) var(--button-gradient-colorstop-2)
|
||||||
|
);
|
||||||
|
-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
|
||||||
|
-webkit-mask-composite: xor;
|
||||||
|
mask-composite: exclude;
|
||||||
|
pointer-events: none;
|
||||||
|
z-index: -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ── Gradient text ── */
|
||||||
|
.gradient-text-purple {
|
||||||
|
background: linear-gradient(103deg, #8258C8 0%, #2C84C8 100%);
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
|
||||||
|
.gradient-text-counter {
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
-webkit-text-fill-color: transparent;
|
||||||
|
background-clip: text;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ── Icon decoration (curved corners) ── */
|
||||||
|
.icon-decoration {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-decoration .icon-inner {
|
||||||
|
position: relative;
|
||||||
|
z-index: 1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.icon-decoration::before,
|
||||||
|
.icon-decoration::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ── Marquee animation ── */
|
||||||
|
@keyframes marquee {
|
||||||
|
0% {
|
||||||
|
transform: translateX(0);
|
||||||
|
}
|
||||||
|
100% {
|
||||||
|
transform: translateX(-50%);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.animate-marquee {
|
||||||
|
animation: marquee 15s linear infinite;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ── Counter animation ── */
|
||||||
|
@keyframes fadeInUp {
|
||||||
|
from {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(20px);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
opacity: 1;
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ── Aiero heading animation ── */
|
||||||
|
@keyframes headingReveal {
|
||||||
|
from {
|
||||||
|
opacity: 0;
|
||||||
|
transform: translateY(30px);
|
||||||
|
}
|
||||||
|
to {
|
||||||
|
opacity: 1;
|
||||||
|
transform: translateY(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.animate-heading-reveal {
|
||||||
|
animation: headingReveal 0.8s ease-out forwards;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ── Scroll down button decoration ── */
|
||||||
|
.scroll-btn-decoration {
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scroll-btn-decoration::before,
|
||||||
|
.scroll-btn-decoration::after {
|
||||||
|
content: "";
|
||||||
|
position: absolute;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
background: transparent;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scroll-btn-decoration::before {
|
||||||
|
top: -20px;
|
||||||
|
left: 0;
|
||||||
|
border-bottom-left-radius: 20px;
|
||||||
|
box-shadow: 0 20px 0 0 #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
.scroll-btn-decoration::after {
|
||||||
|
bottom: -20px;
|
||||||
|
left: 0;
|
||||||
|
border-top-left-radius: 20px;
|
||||||
|
box-shadow: 0 -20px 0 0 #ffffff;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* ── Subheading tag ── */
|
||||||
|
.aiero-subheading {
|
||||||
|
display: inline-flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 10px;
|
||||||
|
font-family: var(--font-sora), sans-serif;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 600;
|
||||||
|
text-transform: uppercase;
|
||||||
|
letter-spacing: 0.1em;
|
||||||
|
margin-bottom: 16px;
|
||||||
|
position: relative;
|
||||||
|
}
|
||||||
|
|
||||||
|
.aiero-subheading::before {
|
||||||
|
content: "";
|
||||||
|
width: 30px;
|
||||||
|
height: 1px;
|
||||||
|
background: currentColor;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,20 +1,29 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Geist, Geist_Mono } from "next/font/google";
|
import { Manrope, Sora, DM_Sans } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
|
|
||||||
const geistSans = Geist({
|
const manrope = Manrope({
|
||||||
variable: "--font-geist-sans",
|
variable: "--font-manrope",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
|
weight: ["400", "500", "600", "700"],
|
||||||
});
|
});
|
||||||
|
|
||||||
const geistMono = Geist_Mono({
|
const sora = Sora({
|
||||||
variable: "--font-geist-mono",
|
variable: "--font-sora",
|
||||||
subsets: ["latin"],
|
subsets: ["latin"],
|
||||||
|
weight: ["400", "500", "600", "700"],
|
||||||
|
});
|
||||||
|
|
||||||
|
const dmSans = DM_Sans({
|
||||||
|
variable: "--font-dm-sans",
|
||||||
|
subsets: ["latin"],
|
||||||
|
weight: ["400", "500", "600", "700"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Create Next App",
|
title: "Home 9 – Aiero",
|
||||||
description: "Generated by create next app",
|
description:
|
||||||
|
"Revolutionizing businesses with cutting-edge AI solutions and groundbreaking innovation. Aiero – AI agency committed to transforming businesses.",
|
||||||
};
|
};
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
@@ -25,9 +34,9 @@ export default function RootLayout({
|
|||||||
return (
|
return (
|
||||||
<html
|
<html
|
||||||
lang="en"
|
lang="en"
|
||||||
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
|
className={`${manrope.variable} ${sora.variable} ${dmSans.variable}`}
|
||||||
>
|
>
|
||||||
<body className="min-h-full flex flex-col">{children}</body>
|
<body suppressHydrationWarning>{children}</body>
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
72
app/page.tsx
@@ -1,65 +1,21 @@
|
|||||||
import Image from "next/image";
|
import { Navbar } from "@/components/aiero/Navbar";
|
||||||
|
import { HeroSection } from "@/components/aiero/HeroSection";
|
||||||
|
import { CardsGrid } from "@/components/aiero/CardsGrid";
|
||||||
|
import { PossibilitiesSection } from "@/components/aiero/PossibilitiesSection";
|
||||||
|
import { MarqueeStrip } from "@/components/aiero/MarqueeStrip";
|
||||||
|
import { FeaturesSection } from "@/components/aiero/FeaturesSection";
|
||||||
|
|
||||||
export default function Home() {
|
export default function Home() {
|
||||||
return (
|
return (
|
||||||
<div className="flex flex-col flex-1 items-center justify-center bg-zinc-50 font-sans dark:bg-black">
|
<main className="bg-white">
|
||||||
<main className="flex flex-1 w-full max-w-3xl flex-col items-center justify-between py-32 px-16 bg-white dark:bg-black sm:items-start">
|
<div className="absolute inset-x-0 top-0 z-50">
|
||||||
<Image
|
<Navbar />
|
||||||
className="dark:invert"
|
|
||||||
src="/next.svg"
|
|
||||||
alt="Next.js logo"
|
|
||||||
width={100}
|
|
||||||
height={20}
|
|
||||||
priority
|
|
||||||
/>
|
|
||||||
<div className="flex flex-col items-center gap-6 text-center sm:items-start sm:text-left">
|
|
||||||
<h1 className="max-w-xs text-3xl font-semibold leading-10 tracking-tight text-black dark:text-zinc-50">
|
|
||||||
To get started, edit the page.tsx file.
|
|
||||||
</h1>
|
|
||||||
<p className="max-w-md text-lg leading-8 text-zinc-600 dark:text-zinc-400">
|
|
||||||
Looking for a starting point or more instructions? Head over to{" "}
|
|
||||||
<a
|
|
||||||
href="https://vercel.com/templates?framework=next.js&utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
|
||||||
className="font-medium text-zinc-950 dark:text-zinc-50"
|
|
||||||
>
|
|
||||||
Templates
|
|
||||||
</a>{" "}
|
|
||||||
or the{" "}
|
|
||||||
<a
|
|
||||||
href="https://nextjs.org/learn?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
|
||||||
className="font-medium text-zinc-950 dark:text-zinc-50"
|
|
||||||
>
|
|
||||||
Learning
|
|
||||||
</a>{" "}
|
|
||||||
center.
|
|
||||||
</p>
|
|
||||||
</div>
|
|
||||||
<div className="flex flex-col gap-4 text-base font-medium sm:flex-row">
|
|
||||||
<a
|
|
||||||
className="flex h-12 w-full items-center justify-center gap-2 rounded-full bg-foreground px-5 text-background transition-colors hover:bg-[#383838] dark:hover:bg-[#ccc] md:w-[158px]"
|
|
||||||
href="https://vercel.com/new?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
>
|
|
||||||
<Image
|
|
||||||
className="dark:invert"
|
|
||||||
src="/vercel.svg"
|
|
||||||
alt="Vercel logomark"
|
|
||||||
width={16}
|
|
||||||
height={16}
|
|
||||||
/>
|
|
||||||
Deploy Now
|
|
||||||
</a>
|
|
||||||
<a
|
|
||||||
className="flex h-12 w-full items-center justify-center rounded-full border border-solid border-black/[.08] px-5 transition-colors hover:border-transparent hover:bg-black/[.04] dark:border-white/[.145] dark:hover:bg-[#1a1a1a] md:w-[158px]"
|
|
||||||
href="https://nextjs.org/docs?utm_source=create-next-app&utm_medium=appdir-template-tw&utm_campaign=create-next-app"
|
|
||||||
target="_blank"
|
|
||||||
rel="noopener noreferrer"
|
|
||||||
>
|
|
||||||
Documentation
|
|
||||||
</a>
|
|
||||||
</div>
|
</div>
|
||||||
|
<HeroSection />
|
||||||
|
<CardsGrid />
|
||||||
|
<PossibilitiesSection />
|
||||||
|
<MarqueeStrip />
|
||||||
|
<FeaturesSection />
|
||||||
</main>
|
</main>
|
||||||
</div>
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
125
components/aiero/CardsGrid.tsx
Normal file
@@ -0,0 +1,125 @@
|
|||||||
|
import { CardHeading, IconButton } from "@/components/shared/CardShared";
|
||||||
|
import { ChartIcon } from "@/components/shared/icons/ChartIcon";
|
||||||
|
import { Counter } from "@/components/shared/Counter";
|
||||||
|
|
||||||
|
export function CardsGrid() {
|
||||||
|
return (
|
||||||
|
<section className="px-[20px] pb-[20px]">
|
||||||
|
<div className="grid grid-cols-1 gap-[20px] md:grid-cols-2 xl:grid-cols-4">
|
||||||
|
|
||||||
|
{/* Card 1 */}
|
||||||
|
<div className="relative flex flex-col justify-between overflow-hidden rounded-[25px] bg-[#343F78] p-[40px_35px_45px_35px] lg:p-[55px_45px_60px_45px] xl:col-span-1">
|
||||||
|
<div
|
||||||
|
className="absolute inset-0 bg-[url('/images/aiero/assistant-artificial-intelligence-min.png')] bg-right-top bg-no-repeat opacity-100 transition-all duration-300 hover:scale-105"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className="relative z-10 flex gap-[6px]">
|
||||||
|
<span className="rounded-[15px] border border-white px-[20px] py-[5px] text-[12px] text-white transition-colors hover:border-[#45D0BD] hover:text-[#45D0BD]">
|
||||||
|
Solutions
|
||||||
|
</span>
|
||||||
|
<span className="rounded-[15px] border border-white px-[20px] py-[5px] text-[12px] text-white transition-colors hover:border-[#45D0BD] hover:text-[#45D0BD]">
|
||||||
|
Plugins
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="relative z-10 mt-[60px] lg:mt-[100px]">
|
||||||
|
<CardHeading
|
||||||
|
title="Enhance operational efficiency"
|
||||||
|
titleClassName="text-white"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className="mt-[44px] flex -space-x-[15px]">
|
||||||
|
<div className="flex h-[52px] w-[52px] items-center justify-center rounded-full bg-[#E8F3FF] shadow-sm">
|
||||||
|
<svg className="h-[24px] w-[24px]" viewBox="0 0 24 24" fill="#0084FF"><path d="M12 2C6.477 2 2 6.145 2 11.258C2 14.156 3.52 16.735 5.868 18.361V22L9.208 20.151C10.096 20.395 11.033 20.516 12 20.516C17.523 20.516 22 16.371 22 11.258C22 6.145 17.523 2 12 2Z"/></svg>
|
||||||
|
</div>
|
||||||
|
<div className="flex h-[52px] w-[52px] items-center justify-center rounded-full bg-[#E5F5FF] shadow-sm">
|
||||||
|
<svg className="h-[24px] w-[24px]" viewBox="0 0 24 24" fill="#00AFF0"><path d="M11.996 22C17.519 22 22 17.523 22 12C22 6.477 17.519 2 11.996 2C6.473 2 2 6.477 2 12C2 17.523 6.473 22 11.996 22Z"/></svg>
|
||||||
|
</div>
|
||||||
|
<div className="flex h-[52px] w-[52px] items-center justify-center rounded-full bg-[#E5FAFF] shadow-sm">
|
||||||
|
<svg className="h-[24px] w-[24px]" viewBox="0 0 24 24" fill="#229ED9"><path d="M12 2C6.477 2 2 6.477 2 12C2 17.523 6.477 22 12 22C17.523 22 22 17.523 22 12C2 6.477 17.523 2 12 2Z"/></svg>
|
||||||
|
</div>
|
||||||
|
<div className="flex h-[52px] w-[52px] items-center justify-center rounded-full bg-[#EAE8FF] shadow-sm">
|
||||||
|
<svg className="h-[24px] w-[24px]" viewBox="0 0 24 24" fill="#5865F2"><path d="M12 2C6.477 2 2 6.477 2 12C2 17.523 6.477 22 12 22C17.523 22 22 17.523 22 12C2 6.477 17.523 2 12 2Z"/></svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<IconButton />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Card 2 */}
|
||||||
|
<div className="relative flex flex-col justify-between overflow-hidden rounded-[25px] bg-[#56619E] p-[40px_35px_45px_35px] lg:p-[45px_45px_50px_45px] xl:col-span-1">
|
||||||
|
<div
|
||||||
|
className="absolute inset-0 bg-[url('/images/aiero/c0eb2845-min.png')] bg-bottom bg-no-repeat transition-all duration-300 hover:scale-105"
|
||||||
|
/>
|
||||||
|
<div className="absolute inset-0 bg-gradient-to-b from-[#3F497F00] to-[#333D74] from-[75%] to-[100%]" />
|
||||||
|
|
||||||
|
<div className="relative z-10 mb-[50px]">
|
||||||
|
<div className="mb-[24px] inline-flex h-[38px] w-[38px] items-center justify-center">
|
||||||
|
<ChartIcon className="h-full w-full text-white" />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<CardHeading
|
||||||
|
title="Tailor algorithms to adapt and optimize processes"
|
||||||
|
titleClassName="text-white"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<p className="text-[16px] text-white">
|
||||||
|
Cobra opaleye gray reef shark bluntnose minnow.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<IconButton />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Card 3 (spans 2 columns) */}
|
||||||
|
<div className="flex flex-col gap-[20px] md:col-span-2 xl:col-span-2">
|
||||||
|
|
||||||
|
{/* Card 3 - Top half */}
|
||||||
|
<div className="relative flex flex-col justify-center overflow-hidden rounded-[25px] bg-[#AC8DE0] p-[40px] lg:p-[45px_50px]">
|
||||||
|
<a href="#" className="absolute inset-0 z-20" aria-label="Happy clients" />
|
||||||
|
<div className="relative z-10 flex flex-col md:flex-row md:items-center md:justify-between">
|
||||||
|
<div>
|
||||||
|
<Counter
|
||||||
|
target={500}
|
||||||
|
suffix="K+"
|
||||||
|
numberClassName="text-[80px] font-bold leading-none font-[var(--font-manrope)] gradient-text-counter"
|
||||||
|
style={{ backgroundImage: "linear-gradient(0deg, rgba(255,255,255,0) 15%, #FFFFFF 100%)" }}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
<div className="mt-4 md:mt-0">
|
||||||
|
<h4 className="font-[var(--font-manrope)] text-[16px] font-medium leading-[20px] text-[#F8E1E1]">
|
||||||
|
Happy
|
||||||
|
<br />
|
||||||
|
clients
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Card 3 - Bottom half */}
|
||||||
|
<div className="relative flex flex-col justify-between overflow-hidden rounded-[25px] bg-[#282828] p-[40px_35px_45px_35px] lg:p-[50px_45px_45px_45px]">
|
||||||
|
<div
|
||||||
|
className="absolute inset-0 bg-[url('/images/aiero/Layer_2-min.jpg')] bg-cover bg-center transition-all duration-300 hover:scale-105"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className="relative z-10 mb-[26px]">
|
||||||
|
<CardHeading
|
||||||
|
title="Unlock your full potential today with the power of Aiero AI"
|
||||||
|
titleClassName="text-white max-w-[80%]"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="relative z-10">
|
||||||
|
<svg width="136" viewBox="0 0 100 28" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M26.4 13.9C26.4 11.2 25.4 9 23.5 7.4C21.6 5.8 19 5 15.7 5C12.4 5 9.8 5.8 7.9 7.4C6 9 5 11.2 5 13.9C5 16.6 6 18.8 7.9 20.4C9.8 22 12.4 22.8 15.7 22.8C19 22.8 21.6 22 23.5 20.4C25.4 18.8 26.4 16.6 26.4 13.9ZM30.7 13.9C30.7 18 29.3 21.2 26.5 23.7C23.7 26.2 19.9 27.5 15.1 27.5C10.3 27.5 6.5 26.2 3.7 23.7C0.9 21.2 -0.5 18 -0.5 13.9C-0.5 9.8 0.9 6.6 3.7 4.1C6.5 1.6 10.3 0.3 15.1 0.3C19.9 0.3 23.7 1.6 26.5 4.1C29.3 6.6 30.7 9.8 30.7 13.9ZM37.7 27V0.8H42V4.5C43.5 2 46.1 0.8 49.8 0.8C52.9 0.8 55.4 1.8 57.3 3.8C59.2 5.8 60.1 8.5 60.1 11.9V27H55.8V12.4C55.8 9.9 55.1 8.1 53.7 6.9C52.3 5.7 50.4 5.1 48 5.1C45.3 5.1 43.1 5.9 41.4 7.5C39.7 9.1 38.8 11.4 38.8 14.4V27H37.7ZM71.1 27.5C67.5 27.5 64.6 26.4 62.4 24.2C60.2 22 59.1 18.9 59.1 14.9V14.2C59.1 10.1 60.3 6.9 62.7 4.5C65.1 2.1 68.3 0.9 72.3 0.9C75.8 0.9 78.6 1.9 80.7 3.9C82.8 5.9 83.8 8.8 83.8 12.6V15.7H63.4C63.6 18.4 64.5 20.4 66.1 21.6C67.7 22.8 69.8 23.4 72.4 23.4C74.6 23.4 76.5 23 78.1 22.2C79.7 21.4 81.1 20.2 82.2 18.6L84.8 21.8C83.2 23.6 81.2 25 78.8 26C76.4 27 73.8 27.5 71.1 27.5ZM80.6 10.6C80.6 8.3 79.9 6.6 78.5 5.5C77.1 4.4 75 3.8 72.2 3.8C69.3 3.8 67 4.6 65.3 6.2C63.6 7.8 62.7 10 62.7 12.8H80.6V10.6ZM90.2 0H94.4V27H90.2V0Z" fill="white"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
);
|
||||||
|
}
|
||||||
125
components/aiero/FeaturesSection.tsx
Normal file
@@ -0,0 +1,125 @@
|
|||||||
|
import { CardHeading, IconButton } from "@/components/shared/CardShared";
|
||||||
|
import { Counter } from "@/components/shared/Counter";
|
||||||
|
|
||||||
|
export function FeaturesSection() {
|
||||||
|
return (
|
||||||
|
<section className="bg-white px-[20px] pb-[100px] pt-[150px]">
|
||||||
|
<div className="mx-auto max-w-[1260px]">
|
||||||
|
{/* Top text and separator */}
|
||||||
|
<div className="mb-[70px] pr-[10%]">
|
||||||
|
<div className="mb-[20px] h-px w-[130px] bg-[#3F3F3F]" />
|
||||||
|
<h2
|
||||||
|
className="max-w-[700px] tracking-[-0.03em] text-white"
|
||||||
|
style={{
|
||||||
|
fontFamily: "var(--font-sora)",
|
||||||
|
fontSize: "clamp(32px, 4vw, 56px)",
|
||||||
|
fontWeight: 700,
|
||||||
|
lineHeight: 1.1,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
AI Solutions that drive success
|
||||||
|
</h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Feature Cards Grid */}
|
||||||
|
<div className="grid grid-cols-1 gap-[20px] lg:grid-cols-2">
|
||||||
|
|
||||||
|
{/* Card 1 - Left */}
|
||||||
|
<div className="relative flex flex-col justify-between overflow-hidden rounded-[25px] border border-[#3F3F3F] bg-[#282828] p-[40px_35px_45px_35px] lg:p-[22%_9%_20%_9%]">
|
||||||
|
<div
|
||||||
|
className="absolute inset-0 bg-[url('/images/aiero/home-9-img.png')] bg-bottom bg-no-repeat transition-all duration-300 hover:scale-105"
|
||||||
|
style={{ backgroundSize: "100% auto" }}
|
||||||
|
/>
|
||||||
|
<div className="absolute inset-0 bg-gradient-to-t from-[#0D0D0D99] to-transparent to-[20%]" />
|
||||||
|
|
||||||
|
<div className="relative z-10 mt-auto">
|
||||||
|
<CardHeading
|
||||||
|
title="Integrate our API to uncover deep insights"
|
||||||
|
titleClassName="text-white"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<ul className="mt-[20px] flex flex-col gap-3">
|
||||||
|
<li className="flex items-center gap-3 text-[#87899B]">
|
||||||
|
<span className="flex h-1 w-1 rounded-full bg-[#87899B]" />
|
||||||
|
Advanced analytics processing
|
||||||
|
</li>
|
||||||
|
<li className="flex items-center gap-3 text-[#87899B]">
|
||||||
|
<span className="flex h-1 w-1 rounded-full bg-[#87899B]" />
|
||||||
|
Real-time data synchronization
|
||||||
|
</li>
|
||||||
|
<li className="flex items-center gap-3 text-[#87899B]">
|
||||||
|
<span className="flex h-1 w-1 rounded-full bg-[#87899B]" />
|
||||||
|
Secure API endpoints
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<IconButton />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Card 2 - Right */}
|
||||||
|
<div className="relative flex flex-col justify-between overflow-hidden rounded-[25px] border border-[#3F3F3F] bg-[#282828] p-[40px_35px_45px_35px] lg:p-[10%_9%_11%_9%]">
|
||||||
|
<div
|
||||||
|
className="absolute inset-0 bg-[url('/images/aiero/Dots.png')] bg-[length:auto] bg-[50%_20px] bg-no-repeat opacity-20"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className="relative z-10 flex h-[42px] w-[42px] items-center justify-center text-white">
|
||||||
|
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" strokeWidth="2" strokeLinecap="round" strokeLinejoin="round" className="h-full w-full">
|
||||||
|
<path d="M12 2v20M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/>
|
||||||
|
</svg>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="relative z-10 mt-[60px] lg:mt-[100px]">
|
||||||
|
<CardHeading
|
||||||
|
title="Data privacy and security with robust measures"
|
||||||
|
titleClassName="text-white"
|
||||||
|
/>
|
||||||
|
<p className="text-[16px] text-[#87899B]">
|
||||||
|
Cobra opaleye gray reef shark bluntnose minnow. Triggerfish bango guppy opah sunfish bluntnose knifefish upside-down catfish.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<IconButton />
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Card 3 - Bottom Full Width */}
|
||||||
|
<div className="relative col-span-1 overflow-hidden rounded-[25px] border border-[#3F3F3F] bg-[#282828] lg:col-span-2">
|
||||||
|
<div
|
||||||
|
className="absolute inset-0 bg-[url('/images/aiero/3d-woman-shape-glowing-with-bright-holographic-colors-1-min.png')] bg-right-bottom bg-no-repeat transition-all duration-300 hover:scale-105"
|
||||||
|
style={{ backgroundSize: "83% auto" }}
|
||||||
|
/>
|
||||||
|
|
||||||
|
<div className="relative z-10 grid grid-cols-1 gap-[40px] p-[40px_35px] lg:grid-cols-2 lg:p-[80px_60px]">
|
||||||
|
<div>
|
||||||
|
<CardHeading
|
||||||
|
subtitle="Technology"
|
||||||
|
title="Tailored solutions specifically to your needs"
|
||||||
|
titleClassName="text-white"
|
||||||
|
subtitleClassName="text-[#45D0BD]"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div className="flex flex-col gap-[40px] sm:flex-row sm:gap-[60px] lg:pl-[15%]">
|
||||||
|
<Counter
|
||||||
|
target={99}
|
||||||
|
suffix="%"
|
||||||
|
numberClassName="text-[60px] font-bold leading-none font-[var(--font-manrope)] text-white"
|
||||||
|
title="Accuracy rate"
|
||||||
|
titleClassName="font-[var(--font-sora)] text-[11px] font-semibold tracking-[0.18em] uppercase text-[#87899B] mt-2"
|
||||||
|
/>
|
||||||
|
<Counter
|
||||||
|
target={24}
|
||||||
|
suffix="/7"
|
||||||
|
numberClassName="text-[60px] font-bold leading-none font-[var(--font-manrope)] text-white"
|
||||||
|
title="Customer support"
|
||||||
|
titleClassName="font-[var(--font-sora)] text-[11px] font-semibold tracking-[0.18em] uppercase text-[#87899B] mt-2"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
);
|
||||||
|
}
|
||||||
86
components/aiero/HeroSection.tsx
Normal file
@@ -0,0 +1,86 @@
|
|||||||
|
|
||||||
|
export function HeroSection() {
|
||||||
|
return (
|
||||||
|
<section className="relative px-5 pt-5">
|
||||||
|
{/* Scroll Down button — vertical, left side */}
|
||||||
|
<div
|
||||||
|
className="absolute left-0 top-1/2 z-20 hidden xl:block"
|
||||||
|
style={{
|
||||||
|
transform: "rotate(-90deg) translateX(-50%) translateY(100%)",
|
||||||
|
transformOrigin: "left bottom",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
<span className="scroll-btn-decoration">
|
||||||
|
<a
|
||||||
|
href="#scroll-down"
|
||||||
|
className="inline-flex items-center gap-2 rounded-b-[25px] bg-white px-[56px] py-[16px] text-[13px] font-semibold text-[#0b0e17] no-underline transition-colors hover:text-[#45d0bd]"
|
||||||
|
style={{ fontFamily: "var(--font-sora)" }}
|
||||||
|
>
|
||||||
|
Scroll down
|
||||||
|
<svg width="10" height="10" viewBox="0 0 12 12" fill="none">
|
||||||
|
<path d="M1 11L11 1M11 1H3M11 1V9" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
</a>
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Hero container with background */}
|
||||||
|
<div
|
||||||
|
className="relative overflow-hidden rounded-[25px] bg-[#1f1f1f] bg-cover bg-center"
|
||||||
|
style={{
|
||||||
|
backgroundImage: "url(/images/aiero/home-9-top-bg-min.jpg)",
|
||||||
|
padding: "13.5% 0 8.333% 0",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
|
||||||
|
{/* Hero content */}
|
||||||
|
<div className="relative z-10 mx-auto max-w-[1140px] px-[15px]" style={{ marginLeft: "-35px", paddingLeft: "calc(50% - 570px + 15px)" }}>
|
||||||
|
<div className="flex flex-col items-start">
|
||||||
|
{/* Heading */}
|
||||||
|
<h1
|
||||||
|
className="mb-5 max-w-[1100px] text-left tracking-[-0.03em] text-white"
|
||||||
|
style={{
|
||||||
|
fontFamily: "var(--font-manrope)",
|
||||||
|
fontSize: "clamp(32px, 5.2vw, 80px)",
|
||||||
|
fontWeight: 700,
|
||||||
|
lineHeight: 1.1,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Revolutionizing businesses with cutting-edge AI solutions and
|
||||||
|
groundbreaking innovation
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
{/* Subtitle */}
|
||||||
|
<div style={{ marginRight: "53%" }}>
|
||||||
|
<p className="text-[16px] leading-[1.6] text-white">
|
||||||
|
Mummichog paradise fish! Triggerfish bango guppy opah sunfish
|
||||||
|
bluntnose knifefish upside-down catfish cobia spookfish convict
|
||||||
|
cichlid.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* CTA Button */}
|
||||||
|
<div className="mt-10">
|
||||||
|
<a
|
||||||
|
href="#"
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
|
className="aiero-button aiero-button-solid inline-flex items-center gap-2 rounded-[25px] border border-[#EF6464] bg-[#EF6464] px-[30px] py-[14px] text-[16px] text-white transition-all hover:border-[#F57E7E] hover:bg-[#F57E7E]"
|
||||||
|
style={{ minWidth: "216px", fontFamily: "var(--font-sora)" }}
|
||||||
|
>
|
||||||
|
Discover
|
||||||
|
<svg width="10" height="10" viewBox="0 0 12 12" fill="none">
|
||||||
|
<path d="M1 11L11 1M11 1H3M11 1V9" stroke="currentColor" strokeWidth="1.5" strokeLinecap="round" strokeLinejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
<span className="button-inner" />
|
||||||
|
</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Scroll anchor */}
|
||||||
|
<div id="scroll-down" className="absolute bottom-0" />
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
);
|
||||||
|
}
|
||||||
30
components/aiero/MarqueeStrip.tsx
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
export function MarqueeStrip() {
|
||||||
|
return (
|
||||||
|
<div className="relative z-10 mx-[-5px] mb-[-90px] mt-[20px] overflow-hidden bg-gradient-to-r from-[#45D0BD] to-[#44B6E9] py-[42px]" style={{ transform: "rotate(-2.07deg)" }}>
|
||||||
|
<div className="flex w-[200%] whitespace-nowrap">
|
||||||
|
{/* Marquee track 1 */}
|
||||||
|
<div className="animate-marquee flex gap-8">
|
||||||
|
{[...Array(6)].map((_, i) => (
|
||||||
|
<div key={i} className="flex items-center gap-8">
|
||||||
|
<span className="text-[60px] font-bold leading-none text-white" style={{ fontFamily: "var(--font-sora)" }}>
|
||||||
|
Artificial Intelligence
|
||||||
|
</span>
|
||||||
|
<span className="flex h-3 w-3 rounded-full bg-white opacity-50" />
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
{/* Marquee track 2 (seamless loop) */}
|
||||||
|
<div className="animate-marquee flex gap-8">
|
||||||
|
{[...Array(6)].map((_, i) => (
|
||||||
|
<div key={`dup-${i}`} className="flex items-center gap-8">
|
||||||
|
<span className="text-[60px] font-bold leading-none text-white" style={{ fontFamily: "var(--font-sora)" }}>
|
||||||
|
Artificial Intelligence
|
||||||
|
</span>
|
||||||
|
<span className="flex h-3 w-3 rounded-full bg-white opacity-50" />
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
102
components/aiero/Navbar.tsx
Normal file
@@ -0,0 +1,102 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useState } from "react";
|
||||||
|
import Image from "next/image";
|
||||||
|
import { navigationData } from "@/data/navigation";
|
||||||
|
import { SearchIcon } from "@/components/shared/icons/SearchIcon";
|
||||||
|
|
||||||
|
export function Navbar() {
|
||||||
|
const [openDropdown, setOpenDropdown] = useState<string | null>(null);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<header className="relative z-30 mx-auto flex h-[76px] max-w-[2520px] items-center justify-between px-2">
|
||||||
|
{/* Logo */}
|
||||||
|
<a href="#" className="flex items-center">
|
||||||
|
<Image
|
||||||
|
src="/images/aiero/logo-dark.png"
|
||||||
|
alt="Aiero"
|
||||||
|
width={109.5}
|
||||||
|
height={19.5}
|
||||||
|
className="h-auto w-auto"
|
||||||
|
priority
|
||||||
|
/>
|
||||||
|
</a>
|
||||||
|
|
||||||
|
{/* Navigation */}
|
||||||
|
<nav className="hidden items-center gap-0 lg:flex" aria-label="Primary navigation">
|
||||||
|
{navigationData.map((item) => (
|
||||||
|
<div
|
||||||
|
key={item.label}
|
||||||
|
className="relative"
|
||||||
|
onMouseEnter={() => setOpenDropdown(item.label)}
|
||||||
|
onMouseLeave={() => setOpenDropdown(null)}
|
||||||
|
>
|
||||||
|
<a
|
||||||
|
href={item.href}
|
||||||
|
className="flex items-center gap-1 rounded-[20px] px-[18px] py-[10px] text-[11px] font-semibold uppercase tracking-[0.18em] text-white transition-colors hover:bg-[#1f1f1f]"
|
||||||
|
style={{ fontFamily: "var(--font-sora)" }}
|
||||||
|
>
|
||||||
|
{item.label}
|
||||||
|
{item.children && (
|
||||||
|
<svg className="ml-0.5 h-2 w-2 opacity-60" viewBox="0 0 8 5" fill="none">
|
||||||
|
<path d="M1 1L4 4L7 1" stroke="currentColor" strokeWidth="1.2" strokeLinecap="round" strokeLinejoin="round"/>
|
||||||
|
</svg>
|
||||||
|
)}
|
||||||
|
</a>
|
||||||
|
|
||||||
|
{/* Dropdown */}
|
||||||
|
{item.children && openDropdown === item.label && (
|
||||||
|
<div className="absolute left-0 top-full z-50 min-w-[200px] rounded-[15px] border border-[#2a2a2a] bg-[#111111] py-3 shadow-2xl">
|
||||||
|
{item.children.map((child) => (
|
||||||
|
<a
|
||||||
|
key={child.label}
|
||||||
|
href={child.href}
|
||||||
|
className="block px-5 py-2.5 text-[12px] font-medium text-white/80 transition-colors hover:text-[#45d0bd]"
|
||||||
|
style={{ fontFamily: "var(--font-sora)" }}
|
||||||
|
>
|
||||||
|
{child.label}
|
||||||
|
</a>
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
))}
|
||||||
|
</nav>
|
||||||
|
|
||||||
|
{/* Right Icons */}
|
||||||
|
<div className="flex items-center gap-5">
|
||||||
|
<button className="hidden text-white transition-colors hover:text-[#45d0bd] md:block" aria-label="Search">
|
||||||
|
<SearchIcon className="h-[18px] w-[18px]" />
|
||||||
|
</button>
|
||||||
|
|
||||||
|
<a
|
||||||
|
href="#"
|
||||||
|
className="hidden items-center gap-2 text-[11px] font-semibold uppercase tracking-[0.18em] text-white transition-colors hover:text-[#45d0bd] md:flex"
|
||||||
|
style={{ fontFamily: "var(--font-sora)" }}
|
||||||
|
>
|
||||||
|
<svg className="h-4 w-4" viewBox="0 0 16 16" fill="none">
|
||||||
|
<circle cx="8" cy="5" r="3.5" stroke="currentColor" strokeWidth="1.3"/>
|
||||||
|
<path d="M2 14.5C2 11.5 4.5 9.5 8 9.5C11.5 9.5 14 11.5 14 14.5" stroke="currentColor" strokeWidth="1.3" strokeLinecap="round"/>
|
||||||
|
</svg>
|
||||||
|
Log in
|
||||||
|
</a>
|
||||||
|
|
||||||
|
<a
|
||||||
|
href="#"
|
||||||
|
className="aiero-button aiero-button-gradient-border rounded-full px-[22px] py-[10px] text-[11px] font-semibold uppercase tracking-[0.18em] text-white"
|
||||||
|
style={{ fontFamily: "var(--font-sora)" }}
|
||||||
|
>
|
||||||
|
Get in Touch
|
||||||
|
<span className="button-inner" />
|
||||||
|
</a>
|
||||||
|
|
||||||
|
{/* Mobile menu button */}
|
||||||
|
<button className="flex flex-col gap-[5px] lg:hidden" aria-label="Menu">
|
||||||
|
<span className="h-[2px] w-[22px] bg-white" />
|
||||||
|
<span className="h-[2px] w-[22px] bg-white" />
|
||||||
|
<span className="h-[2px] w-[22px] bg-white" />
|
||||||
|
</button>
|
||||||
|
</div>
|
||||||
|
</header>
|
||||||
|
);
|
||||||
|
}
|
||||||
88
components/aiero/PossibilitiesSection.tsx
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
import { AieroButton } from "@/components/shared/AieroButton";
|
||||||
|
import { Counter } from "@/components/shared/Counter";
|
||||||
|
import { IconBox } from "@/components/shared/IconBox";
|
||||||
|
import { OrbitIcon, FanIcon, CirclesIcon, ExpandIcon } from "@/components/shared/icons/PossibilityIcons";
|
||||||
|
|
||||||
|
export function PossibilitiesSection() {
|
||||||
|
return (
|
||||||
|
<section className="px-[20px] py-[60px] md:py-[100px]">
|
||||||
|
<div className="mx-auto grid max-w-[1260px] grid-cols-1 gap-[50px] lg:grid-cols-[1fr_1fr]">
|
||||||
|
|
||||||
|
{/* Left Column */}
|
||||||
|
<div className="flex flex-col items-start pr-[10%] pt-[20px]">
|
||||||
|
<span
|
||||||
|
className="aiero-subheading mb-[16px] text-white"
|
||||||
|
style={{ fontFamily: "var(--font-sora)" }}
|
||||||
|
>
|
||||||
|
Possibilities
|
||||||
|
</span>
|
||||||
|
|
||||||
|
<h2
|
||||||
|
className="mb-[24px] max-w-[500px] tracking-[-0.03em] text-white"
|
||||||
|
style={{
|
||||||
|
fontFamily: "var(--font-dm-sans)",
|
||||||
|
fontSize: "clamp(32px, 4vw, 56px)",
|
||||||
|
fontWeight: 500,
|
||||||
|
lineHeight: 1.1,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
Explore limitless possibilities with Aiero AI
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
<p className="mb-[40px] max-w-[480px] text-[16px] text-[#87899B]">
|
||||||
|
Guppy siamese fighting fish, round stingray roach, sand tiger yellow weaver fish. Longnose lancetfish mooneye opah ghost fish.
|
||||||
|
</p>
|
||||||
|
|
||||||
|
<AieroButton
|
||||||
|
variant="gradient-fill"
|
||||||
|
className="rounded-[25px] px-[35px] py-[15px] text-[15px] font-medium"
|
||||||
|
showArrow={false}
|
||||||
|
>
|
||||||
|
Explore more
|
||||||
|
</AieroButton>
|
||||||
|
|
||||||
|
<div className="mt-[80px]">
|
||||||
|
<Counter
|
||||||
|
target={270}
|
||||||
|
suffix="k"
|
||||||
|
numberClassName="text-[60px] md:text-[80px] font-bold leading-none font-[var(--font-manrope)] gradient-text-purple"
|
||||||
|
title="Global satisfied customers"
|
||||||
|
titleClassName="font-[var(--font-manrope)] text-[16px] font-medium leading-[1.4] text-[#87899B] max-w-[120px]"
|
||||||
|
layout="row-reverse"
|
||||||
|
gap="30px"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{/* Right Column */}
|
||||||
|
<div className="flex flex-col gap-[30px] lg:pl-[10%]">
|
||||||
|
<IconBox
|
||||||
|
icon={<OrbitIcon className="h-full w-full" />}
|
||||||
|
title="Cutting-edge technology"
|
||||||
|
description="Integration of state-of-the-art AI algorithms, including deep learning, natural language processing."
|
||||||
|
hasBorder={true}
|
||||||
|
/>
|
||||||
|
<IconBox
|
||||||
|
icon={<FanIcon className="h-full w-full" />}
|
||||||
|
title="Tailored solutions"
|
||||||
|
description="Custom design and development of neural network architectures tailored to specific business needs."
|
||||||
|
hasBorder={true}
|
||||||
|
/>
|
||||||
|
<IconBox
|
||||||
|
icon={<CirclesIcon className="h-full w-full" />}
|
||||||
|
title="Training and workshops"
|
||||||
|
description="Custom design and development of neural network architectures tailored to specific business needs and objectives."
|
||||||
|
hasBorder={true}
|
||||||
|
/>
|
||||||
|
<IconBox
|
||||||
|
icon={<ExpandIcon className="h-full w-full" />}
|
||||||
|
title="AI-powered design"
|
||||||
|
description="Integration of state-of-the-art AI algorithms, including deep learning, natural language processing."
|
||||||
|
hasBorder={false}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
);
|
||||||
|
}
|
||||||
51
components/shared/AieroButton.tsx
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
import { ArrowIcon } from "@/components/shared/icons/ArrowIcon";
|
||||||
|
|
||||||
|
type ButtonVariant = "solid" | "outline" | "gradient-border" | "gradient-fill" | "simple";
|
||||||
|
|
||||||
|
interface AieroButtonProps {
|
||||||
|
href?: string;
|
||||||
|
variant?: ButtonVariant;
|
||||||
|
children: React.ReactNode;
|
||||||
|
className?: string;
|
||||||
|
showArrow?: boolean;
|
||||||
|
target?: string;
|
||||||
|
onClick?: () => void;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function AieroButton({
|
||||||
|
href = "#",
|
||||||
|
variant = "solid",
|
||||||
|
children,
|
||||||
|
className = "",
|
||||||
|
showArrow = true,
|
||||||
|
target,
|
||||||
|
onClick,
|
||||||
|
}: AieroButtonProps) {
|
||||||
|
const baseClasses = "aiero-button";
|
||||||
|
|
||||||
|
const variantClasses: Record<ButtonVariant, string> = {
|
||||||
|
solid: "aiero-button-solid",
|
||||||
|
outline: "aiero-button-solid",
|
||||||
|
"gradient-border": "aiero-button-gradient-border",
|
||||||
|
"gradient-fill": "aiero-button-gradient-fill",
|
||||||
|
simple: "",
|
||||||
|
};
|
||||||
|
|
||||||
|
const combined = `${baseClasses} ${variantClasses[variant]} ${className}`;
|
||||||
|
|
||||||
|
return (
|
||||||
|
<a
|
||||||
|
href={href}
|
||||||
|
target={target}
|
||||||
|
className={combined}
|
||||||
|
onClick={onClick}
|
||||||
|
rel={target === "_blank" ? "noopener noreferrer" : undefined}
|
||||||
|
>
|
||||||
|
{children}
|
||||||
|
{showArrow && <ArrowIcon className="w-3 h-3" />}
|
||||||
|
{(variant === "gradient-border" || variant === "gradient-fill") && (
|
||||||
|
<span className="button-inner" />
|
||||||
|
)}
|
||||||
|
</a>
|
||||||
|
);
|
||||||
|
}
|
||||||
51
components/shared/CardShared.tsx
Normal file
@@ -0,0 +1,51 @@
|
|||||||
|
import { ArrowIcon } from "@/components/shared/icons/ArrowIcon";
|
||||||
|
|
||||||
|
interface CardHeadingProps {
|
||||||
|
title: string;
|
||||||
|
subtitle?: string;
|
||||||
|
titleClassName?: string;
|
||||||
|
subtitleClassName?: string;
|
||||||
|
wrapperClassName?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function CardHeading({
|
||||||
|
title,
|
||||||
|
subtitle,
|
||||||
|
titleClassName = "",
|
||||||
|
subtitleClassName = "",
|
||||||
|
wrapperClassName = "",
|
||||||
|
}: CardHeadingProps) {
|
||||||
|
return (
|
||||||
|
<div className={`mb-5 ${wrapperClassName}`}>
|
||||||
|
{subtitle && (
|
||||||
|
<div
|
||||||
|
className={`aiero-subheading ${subtitleClassName}`}
|
||||||
|
style={{ fontFamily: "var(--font-sora)" }}
|
||||||
|
>
|
||||||
|
{subtitle}
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
|
<h4
|
||||||
|
className={`tracking-[-0.03em] ${titleClassName}`}
|
||||||
|
style={{
|
||||||
|
fontFamily: "var(--font-dm-sans)",
|
||||||
|
fontSize: "30px",
|
||||||
|
fontWeight: 500,
|
||||||
|
lineHeight: "1.16666em",
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{title}
|
||||||
|
</h4>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function IconButton({ className = "" }: { className?: string }) {
|
||||||
|
return (
|
||||||
|
<div className={`absolute bottom-0 right-0 icon-decoration ${className}`}>
|
||||||
|
<div className="icon-inner flex h-[52px] w-[52px] items-center justify-center rounded-tl-[30px] bg-white text-[#333333] transition-colors hover:bg-[#333333] hover:text-white">
|
||||||
|
<ArrowIcon className="h-3 w-3" />
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
79
components/shared/Counter.tsx
Normal file
@@ -0,0 +1,79 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { useEffect, useRef, useState } from "react";
|
||||||
|
|
||||||
|
interface CounterProps {
|
||||||
|
target: number;
|
||||||
|
suffix?: string;
|
||||||
|
prefix?: string;
|
||||||
|
duration?: number;
|
||||||
|
className?: string;
|
||||||
|
title?: string;
|
||||||
|
numberClassName?: string;
|
||||||
|
titleClassName?: string;
|
||||||
|
layout?: "default" | "row-reverse";
|
||||||
|
gap?: string;
|
||||||
|
style?: React.CSSProperties;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function Counter({
|
||||||
|
target,
|
||||||
|
suffix = "",
|
||||||
|
prefix = "",
|
||||||
|
duration = 2000,
|
||||||
|
className = "",
|
||||||
|
title,
|
||||||
|
numberClassName = "",
|
||||||
|
titleClassName = "",
|
||||||
|
layout = "default",
|
||||||
|
gap = "0px",
|
||||||
|
style,
|
||||||
|
}: CounterProps) {
|
||||||
|
const [count, setCount] = useState(0);
|
||||||
|
const [hasAnimated, setHasAnimated] = useState(false);
|
||||||
|
const ref = useRef<HTMLDivElement>(null);
|
||||||
|
|
||||||
|
useEffect(() => {
|
||||||
|
const el = ref.current;
|
||||||
|
if (!el) return;
|
||||||
|
|
||||||
|
const observer = new IntersectionObserver(
|
||||||
|
([entry]) => {
|
||||||
|
if (entry.isIntersecting && !hasAnimated) {
|
||||||
|
setHasAnimated(true);
|
||||||
|
const startTime = performance.now();
|
||||||
|
const animate = (now: number) => {
|
||||||
|
const elapsed = now - startTime;
|
||||||
|
const progress = Math.min(elapsed / duration, 1);
|
||||||
|
// ease-out
|
||||||
|
const eased = 1 - Math.pow(1 - progress, 3);
|
||||||
|
setCount(Math.floor(eased * target));
|
||||||
|
if (progress < 1) requestAnimationFrame(animate);
|
||||||
|
};
|
||||||
|
requestAnimationFrame(animate);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ threshold: 0.3 }
|
||||||
|
);
|
||||||
|
|
||||||
|
observer.observe(el);
|
||||||
|
return () => observer.disconnect();
|
||||||
|
}, [target, duration, hasAnimated]);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
ref={ref}
|
||||||
|
className={`${layout === "row-reverse" ? "flex flex-row-reverse items-end" : "flex flex-col"} ${className}`}
|
||||||
|
style={{ gap }}
|
||||||
|
>
|
||||||
|
<div className={`${numberClassName}`} style={style}>
|
||||||
|
{prefix && <span>{prefix}</span>}
|
||||||
|
<span>{count}</span>
|
||||||
|
{suffix && <span>{suffix}</span>}
|
||||||
|
</div>
|
||||||
|
{title && (
|
||||||
|
<div className={`${titleClassName}`}>{title}</div>
|
||||||
|
)}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
39
components/shared/IconBox.tsx
Normal file
@@ -0,0 +1,39 @@
|
|||||||
|
import { ReactNode } from "react";
|
||||||
|
|
||||||
|
interface IconBoxProps {
|
||||||
|
icon: ReactNode;
|
||||||
|
title: string;
|
||||||
|
description: string;
|
||||||
|
hasBorder?: boolean;
|
||||||
|
}
|
||||||
|
|
||||||
|
export function IconBox({ icon, title, description, hasBorder = true }: IconBoxProps) {
|
||||||
|
return (
|
||||||
|
<div className="flex flex-col items-start gap-[20px] sm:flex-row sm:gap-[40px]">
|
||||||
|
<div className="flex h-[88px] w-[88px] shrink-0 items-center justify-center">
|
||||||
|
{icon}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div
|
||||||
|
className={`flex-1 pb-[30px] pt-[5px] ${
|
||||||
|
hasBorder ? "border-b border-[#3F3F3F]" : ""
|
||||||
|
}`}
|
||||||
|
>
|
||||||
|
<h5
|
||||||
|
className="mb-[15px] text-white"
|
||||||
|
style={{
|
||||||
|
fontFamily: "var(--font-manrope)",
|
||||||
|
fontSize: "25px",
|
||||||
|
lineHeight: 1.4,
|
||||||
|
fontWeight: 500,
|
||||||
|
}}
|
||||||
|
>
|
||||||
|
{title}
|
||||||
|
</h5>
|
||||||
|
<p className="text-[16px] leading-[1.6] text-[#87899B]">
|
||||||
|
{description}
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
20
components/shared/icons/ArrowIcon.tsx
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
export function ArrowIcon({ className = "" }: { className?: string }) {
|
||||||
|
return (
|
||||||
|
<svg
|
||||||
|
className={className}
|
||||||
|
width="12"
|
||||||
|
height="12"
|
||||||
|
viewBox="0 0 12 12"
|
||||||
|
fill="none"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
d="M1 11L11 1M11 1H3M11 1V9"
|
||||||
|
stroke="currentColor"
|
||||||
|
strokeWidth="1.5"
|
||||||
|
strokeLinecap="round"
|
||||||
|
strokeLinejoin="round"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
}
|
||||||
193
components/shared/icons/ChartIcon.tsx
Normal file
@@ -0,0 +1,193 @@
|
|||||||
|
export function ChartIcon({ className = "" }: { className?: string }) {
|
||||||
|
return (
|
||||||
|
<svg
|
||||||
|
className={className}
|
||||||
|
viewBox="0 0 77 88"
|
||||||
|
fill="none"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
>
|
||||||
|
<path
|
||||||
|
d="M45.74 40.8109C51.6726 37.3857 53.7055 29.8003 50.2807 23.8683C46.8559 17.9363 39.2702 15.9042 33.3376 19.3294C27.405 22.7546 25.3721 30.3401 28.7969 36.2721C32.2217 42.2041 39.8074 44.2361 45.74 40.8109Z"
|
||||||
|
stroke="url(#paint0_linear)"
|
||||||
|
strokeWidth="0.6"
|
||||||
|
strokeMiterlimit="10"
|
||||||
|
/>
|
||||||
|
<path
|
||||||
|
d="M47.1284 43.216C53.426 39.58 55.5842 31.528 51.9488 25.2313C48.3134 18.9346 40.2611 16.7777 33.9634 20.4136C27.6658 24.0496 25.5076 32.1016 29.143 38.3982C32.7784 44.6949 40.8307 46.8518 47.1284 43.216Z"
|
||||||
|
stroke="url(#paint1_linear)"
|
||||||
|
strokeWidth="0.6"
|
||||||
|
strokeMiterlimit="10"
|
||||||
|
/>
|
||||||
|
<path
|
||||||
|
d="M48.5691 45.7111C55.2842 41.8341 57.5856 33.2485 53.7094 26.5346C49.8331 19.8208 41.2471 17.521 34.5319 21.398C27.8168 25.275 25.5154 33.8606 29.3916 40.5745C33.2679 47.2883 41.8539 49.5881 48.5691 45.7111Z"
|
||||||
|
stroke="url(#paint2_linear)"
|
||||||
|
strokeWidth="0.6"
|
||||||
|
strokeMiterlimit="10"
|
||||||
|
/>
|
||||||
|
<path
|
||||||
|
d="M50.0791 48.2764C57.2512 44.1205 59.6971 34.9389 55.5422 27.7685C51.3874 20.5981 42.205 18.1543 35.0329 22.3102C27.8609 26.466 25.415 35.6477 29.5698 42.8181C33.7247 49.9885 42.9071 52.4322 50.0791 48.2764Z"
|
||||||
|
stroke="url(#paint3_linear)"
|
||||||
|
strokeWidth="0.6"
|
||||||
|
strokeMiterlimit="10"
|
||||||
|
/>
|
||||||
|
<path
|
||||||
|
d="M51.5834 50.9308C59.2604 46.4985 61.8917 36.6837 57.4607 29.0089C53.0296 21.334 43.2141 18.7054 35.5371 23.1377C27.8601 27.57 25.2288 37.3848 29.6599 45.0596C34.091 52.7345 43.9065 55.3631 51.5834 50.9308Z"
|
||||||
|
stroke="url(#paint4_linear)"
|
||||||
|
strokeWidth="0.6"
|
||||||
|
strokeMiterlimit="10"
|
||||||
|
/>
|
||||||
|
<path
|
||||||
|
d="M53.1404 53.6281C61.3442 48.8916 64.1552 38.4018 59.419 30.1984C54.6827 21.995 44.1928 19.1845 35.989 23.921C27.7852 28.6574 24.9742 39.1472 29.7105 47.3506C34.4467 55.554 44.9366 58.3645 53.1404 53.6281Z"
|
||||||
|
stroke="url(#paint5_linear)"
|
||||||
|
strokeWidth="0.6"
|
||||||
|
strokeMiterlimit="10"
|
||||||
|
/>
|
||||||
|
<path
|
||||||
|
d="M54.7248 56.3733C63.4817 51.3175 66.4824 40.1209 61.4271 31.3649C56.3718 22.609 45.1749 19.6093 36.4181 24.6651C27.6613 29.7208 24.6606 40.9175 29.7159 49.6734C34.7711 58.4294 45.968 61.429 54.7248 56.3733Z"
|
||||||
|
stroke="url(#paint6_linear)"
|
||||||
|
strokeWidth="0.6"
|
||||||
|
strokeMiterlimit="10"
|
||||||
|
/>
|
||||||
|
<path
|
||||||
|
d="M56.3293 59.1495C65.6588 53.7631 68.856 41.8346 63.4704 32.5064C58.0847 23.1782 46.1557 19.9827 36.8262 25.3691C27.4967 30.7555 24.2995 42.6841 29.6852 52.0123C35.0708 61.3405 47.0001 64.5359 56.3293 59.1495Z"
|
||||||
|
stroke="url(#paint7_linear)"
|
||||||
|
strokeWidth="0.6"
|
||||||
|
strokeMiterlimit="10"
|
||||||
|
/>
|
||||||
|
<path
|
||||||
|
d="M57.9492 61.9564C67.8667 56.2305 71.2646 43.5487 65.5385 33.6308C59.8124 23.7129 47.1307 20.3147 37.2132 26.0406C27.2956 31.7664 23.8978 44.4482 29.6239 54.3661C35.35 64.284 48.0317 67.6823 57.9492 61.9564Z"
|
||||||
|
stroke="url(#paint8_linear)"
|
||||||
|
strokeWidth="0.6"
|
||||||
|
strokeMiterlimit="10"
|
||||||
|
/>
|
||||||
|
<path
|
||||||
|
d="M59.5832 64.788C70.104 58.7138 73.7088 45.2609 67.6347 34.7402C61.5606 24.2195 48.1077 20.6149 37.5868 26.6892C27.0659 32.7634 23.4612 46.2162 29.5353 56.7369C35.6094 67.2576 49.0623 70.8623 59.5832 64.788Z"
|
||||||
|
stroke="url(#paint9_linear)"
|
||||||
|
strokeWidth="0.6"
|
||||||
|
strokeMiterlimit="10"
|
||||||
|
/>
|
||||||
|
<defs>
|
||||||
|
<linearGradient
|
||||||
|
id="paint0_linear"
|
||||||
|
x1="1.76204"
|
||||||
|
y1="0.999985"
|
||||||
|
x2="96.3599"
|
||||||
|
y2="20.9846"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
>
|
||||||
|
<stop stopColor="#8258C8" />
|
||||||
|
<stop offset="0.315" stopColor="#6766C8" />
|
||||||
|
<stop offset="1" stopColor="#2C84C8" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="paint1_linear"
|
||||||
|
x1="2.73637"
|
||||||
|
y1="1.48534"
|
||||||
|
x2="95.1113"
|
||||||
|
y2="21.0161"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
>
|
||||||
|
<stop stopColor="#8258C8" />
|
||||||
|
<stop offset="0.315" stopColor="#6766C8" />
|
||||||
|
<stop offset="1" stopColor="#2C84C8" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="paint2_linear"
|
||||||
|
x1="3.70122"
|
||||||
|
y1="1.96678"
|
||||||
|
x2="93.8892"
|
||||||
|
y2="21.0474"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
>
|
||||||
|
<stop stopColor="#8258C8" />
|
||||||
|
<stop offset="0.315" stopColor="#6766C8" />
|
||||||
|
<stop offset="1" stopColor="#2C84C8" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="paint3_linear"
|
||||||
|
x1="4.64915"
|
||||||
|
y1="2.42967"
|
||||||
|
x2="92.732"
|
||||||
|
y2="21.0817"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
>
|
||||||
|
<stop stopColor="#8258C8" />
|
||||||
|
<stop offset="0.315" stopColor="#6766C8" />
|
||||||
|
<stop offset="1" stopColor="#2C84C8" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="paint4_linear"
|
||||||
|
x1="5.59368"
|
||||||
|
y1="2.90135"
|
||||||
|
x2="91.6306"
|
||||||
|
y2="21.141"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
>
|
||||||
|
<stop stopColor="#8258C8" />
|
||||||
|
<stop offset="0.315" stopColor="#6766C8" />
|
||||||
|
<stop offset="1" stopColor="#2C84C8" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="paint5_linear"
|
||||||
|
x1="6.51916"
|
||||||
|
y1="3.33885"
|
||||||
|
x2="90.5712"
|
||||||
|
y2="21.1782"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
>
|
||||||
|
<stop stopColor="#8258C8" />
|
||||||
|
<stop offset="0.315" stopColor="#6766C8" />
|
||||||
|
<stop offset="1" stopColor="#2C84C8" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="paint6_linear"
|
||||||
|
x1="7.45649"
|
||||||
|
y1="3.79882"
|
||||||
|
x2="89.5413"
|
||||||
|
y2="21.2411"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
>
|
||||||
|
<stop stopColor="#8258C8" />
|
||||||
|
<stop offset="0.315" stopColor="#6766C8" />
|
||||||
|
<stop offset="1" stopColor="#2C84C8" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="paint7_linear"
|
||||||
|
x1="8.38824"
|
||||||
|
y1="4.21971"
|
||||||
|
x2="88.5417"
|
||||||
|
y2="21.2658"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
>
|
||||||
|
<stop stopColor="#8258C8" />
|
||||||
|
<stop offset="0.315" stopColor="#6766C8" />
|
||||||
|
<stop offset="1" stopColor="#2C84C8" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="paint8_linear"
|
||||||
|
x1="9.30078"
|
||||||
|
y1="4.64647"
|
||||||
|
x2="87.5608"
|
||||||
|
y2="21.3088"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
>
|
||||||
|
<stop stopColor="#8258C8" />
|
||||||
|
<stop offset="0.315" stopColor="#6766C8" />
|
||||||
|
<stop offset="1" stopColor="#2C84C8" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="paint9_linear"
|
||||||
|
x1="10.2252"
|
||||||
|
y1="5.05272"
|
||||||
|
x2="86.613"
|
||||||
|
y2="21.3297"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
>
|
||||||
|
<stop stopColor="#8258C8" />
|
||||||
|
<stop offset="0.315" stopColor="#6766C8" />
|
||||||
|
<stop offset="1" stopColor="#2C84C8" />
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
}
|
||||||
81
components/shared/icons/PossibilityIcons.tsx
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
export function OrbitIcon({ className = "" }: { className?: string }) {
|
||||||
|
return (
|
||||||
|
<svg className={className} viewBox="0 0 78 88" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M45.74 40.8109C51.6726 37.3857 53.7055 29.8003 50.2807 23.8683C46.8559 17.9363 39.2702 15.9042 33.3376 19.3294C27.405 22.7546 25.3721 30.3401 28.7969 36.2721C32.2217 42.2041 39.8074 44.2361 45.74 40.8109Z" stroke="url(#paint0_linear)" strokeWidth="0.6"/>
|
||||||
|
<path d="M47.1284 43.216C53.426 39.58 55.5842 31.528 51.9488 25.2313C48.3134 18.9346 40.2611 16.7777 33.9634 20.4136C27.6658 24.0496 25.5076 32.1016 29.143 38.3982C32.7784 44.6949 40.8307 46.8518 47.1284 43.216Z" stroke="url(#paint1_linear)" strokeWidth="0.6"/>
|
||||||
|
<path d="M48.5691 45.7111C55.2842 41.8341 57.5856 33.2485 53.7094 26.5346C49.8331 19.8208 41.2471 17.521 34.5319 21.398C27.8168 25.275 25.5154 33.8606 29.3916 40.5745C33.2679 47.2883 41.8539 49.5881 48.5691 45.7111Z" stroke="url(#paint2_linear)" strokeWidth="0.6"/>
|
||||||
|
<path d="M50.0791 48.2764C57.2512 44.1205 59.6971 34.9389 55.5422 27.7685C51.3874 20.5981 42.205 18.1543 35.0329 22.3102C27.8609 26.466 25.415 35.6477 29.5698 42.8181C33.7247 49.9885 42.9071 52.4322 50.0791 48.2764Z" stroke="url(#paint3_linear)" strokeWidth="0.6"/>
|
||||||
|
<path d="M51.5834 50.9308C59.2604 46.4985 61.8917 36.6837 57.4607 29.0089C53.0296 21.334 43.2141 18.7054 35.5371 23.1377C27.8601 27.57 25.2288 37.3848 29.6599 45.0596C34.091 52.7345 43.9065 55.3631 51.5834 50.9308Z" stroke="url(#paint4_linear)" strokeWidth="0.6"/>
|
||||||
|
<path d="M53.1404 53.6281C61.3442 48.8916 64.1552 38.4018 59.419 30.1984C54.6827 21.995 44.1928 19.1845 35.989 23.921C27.7852 28.6574 24.9742 39.1472 29.7105 47.3506C34.4467 55.554 44.9366 58.3645 53.1404 53.6281Z" stroke="url(#paint5_linear)" strokeWidth="0.6"/>
|
||||||
|
<path d="M54.7248 56.3733C63.4817 51.3175 66.4824 40.1209 61.4271 31.3649C56.3718 22.609 45.1749 19.6093 36.4181 24.6651C27.6613 29.7208 24.6606 40.9175 29.7159 49.6734C34.7711 58.4294 45.968 61.429 54.7248 56.3733Z" stroke="url(#paint6_linear)" strokeWidth="0.6"/>
|
||||||
|
<path d="M56.3293 59.1495C65.6588 53.7631 68.856 41.8346 63.4704 32.5064C58.0847 23.1782 46.1557 19.9827 36.8262 25.3691C27.4967 30.7555 24.2995 42.6841 29.6852 52.0123C35.0708 61.3405 47.0001 64.5359 56.3293 59.1495Z" stroke="url(#paint7_linear)" strokeWidth="0.6"/>
|
||||||
|
<path d="M57.9492 61.9564C67.8667 56.2305 71.2646 43.5487 65.5385 33.6308C59.8124 23.7129 47.1307 20.3147 37.2132 26.0406C27.2956 31.7664 23.8978 44.4482 29.6239 54.3661C35.35 64.284 48.0317 67.6823 57.9492 61.9564Z" stroke="url(#paint8_linear)" strokeWidth="0.6"/>
|
||||||
|
<path d="M59.5832 64.788C70.104 58.7138 73.7088 45.2609 67.6347 34.7402C61.5606 24.2195 48.1077 20.6149 37.5868 26.6892C27.0659 32.7634 23.4612 46.2162 29.5353 56.7369C35.6094 67.2576 49.0623 70.8623 59.5832 64.788Z" stroke="url(#paint9_linear)" strokeWidth="0.6"/>
|
||||||
|
<path d="M77.3353 53.9649C75.6778 68.1777 62.8087 78.3548 48.5983 76.6937C34.3841 75.0349 24.2075 62.1707 25.8712 47.9595C27.5286 33.7467 40.3978 23.5695 54.6081 25.2307C68.8224 26.8895 78.999 39.7537 77.3353 53.9649Z" stroke="url(#paint10_linear)" strokeWidth="0.6"/>
|
||||||
|
<path d="M79.5896 56.4701C77.5065 71.3716 63.7371 81.7627 48.8364 79.6828C33.9358 77.603 23.5412 63.8311 25.6244 48.9296C27.7075 34.0281 41.4769 23.637 56.3776 25.7169C71.2805 27.8007 81.6728 41.5686 79.5896 56.4701Z" stroke="url(#paint11_linear)" strokeWidth="0.6"/>
|
||||||
|
<path d="M81.8459 58.9799C79.3371 74.5701 64.6657 85.1813 49.0742 82.6726C33.4849 80.1677 22.873 65.4985 25.3795 49.9043C27.8882 34.3142 42.5596 23.7029 58.1512 26.2116C73.7428 28.7204 84.3524 43.3857 81.8459 58.9799Z" stroke="url(#paint12_linear)" strokeWidth="0.6"/>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="paint0_linear" x1="1.76204" y1="0.999985" x2="96.3599" y2="20.9846" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint1_linear" x1="2.73637" y1="1.48534" x2="95.1113" y2="21.0161" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint2_linear" x1="3.70122" y1="1.96678" x2="93.8892" y2="21.0474" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint3_linear" x1="4.64915" y1="2.42967" x2="92.732" y2="21.0817" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint4_linear" x1="5.59368" y1="2.90135" x2="91.6306" y2="21.141" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint5_linear" x1="6.51916" y1="3.33885" x2="90.5712" y2="21.1782" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint6_linear" x1="7.45649" y1="3.79882" x2="89.5413" y2="21.2411" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint7_linear" x1="8.38824" y1="4.21971" x2="88.5417" y2="21.2658" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint8_linear" x1="9.30078" y1="4.64647" x2="87.5608" y2="21.3088" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint9_linear" x1="10.2252" y1="5.05272" x2="86.613" y2="21.3297" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint10_linear" x1="11.1361" y1="5.45702" x2="85.6724" y2="21.352" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint11_linear" x1="12.0433" y1="5.83104" x2="84.7566" y2="21.3469" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint12_linear" x1="12.9525" y1="6.21288" x2="83.8468" y2="21.3492" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function FanIcon({ className = "" }: { className?: string }) {
|
||||||
|
return (
|
||||||
|
<svg className={className} viewBox="0 0 78 88" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M48.5691 45.7111C55.2842 41.8341 57.5856 33.2485 53.7094 26.5346C49.8331 19.8208 41.2471 17.521 34.5319 21.398C27.8168 25.275 25.5154 33.8606 29.3916 40.5745C33.2679 47.2883 41.8539 49.5881 48.5691 45.7111Z" stroke="url(#paint0_linear)" strokeWidth="0.6"/>
|
||||||
|
<path d="M50.0791 48.2764C57.2512 44.1205 59.6971 34.9389 55.5422 27.7685C51.3874 20.5981 42.205 18.1543 35.0329 22.3102C27.8609 26.466 25.415 35.6477 29.5698 42.8181C33.7247 49.9885 42.9071 52.4322 50.0791 48.2764Z" stroke="url(#paint1_linear)" strokeWidth="0.6"/>
|
||||||
|
<path d="M51.5834 50.9308C59.2604 46.4985 61.8917 36.6837 57.4607 29.0089C53.0296 21.334 43.2141 18.7054 35.5371 23.1377C27.8601 27.57 25.2288 37.3848 29.6599 45.0596C34.091 52.7345 43.9065 55.3631 51.5834 50.9308Z" stroke="url(#paint2_linear)" strokeWidth="0.6"/>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="paint0_linear" x1="1.76204" y1="0.999985" x2="96.3599" y2="20.9846" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint1_linear" x1="2.73637" y1="1.48534" x2="95.1113" y2="21.0161" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint2_linear" x1="3.70122" y1="1.96678" x2="93.8892" y2="21.0474" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function CirclesIcon({ className = "" }: { className?: string }) {
|
||||||
|
return (
|
||||||
|
<svg className={className} viewBox="0 0 78 88" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<circle cx="39" cy="44" r="30" stroke="url(#paint0_linear)" strokeWidth="0.6"/>
|
||||||
|
<circle cx="39" cy="44" r="25" stroke="url(#paint1_linear)" strokeWidth="0.6"/>
|
||||||
|
<circle cx="39" cy="44" r="20" stroke="url(#paint2_linear)" strokeWidth="0.6"/>
|
||||||
|
<circle cx="39" cy="44" r="15" stroke="url(#paint3_linear)" strokeWidth="0.6"/>
|
||||||
|
<circle cx="39" cy="44" r="10" stroke="url(#paint4_linear)" strokeWidth="0.6"/>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="paint0_linear" x1="9" y1="14" x2="69" y2="74" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint1_linear" x1="14" y1="19" x2="64" y2="69" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint2_linear" x1="19" y1="24" x2="59" y2="64" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint3_linear" x1="24" y1="29" x2="54" y2="59" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint4_linear" x1="29" y1="34" x2="49" y2="54" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
export function ExpandIcon({ className = "" }: { className?: string }) {
|
||||||
|
return (
|
||||||
|
<svg className={className} viewBox="0 0 78 88" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||||
|
<path d="M45.74 40.8109C51.6726 37.3857 53.7055 29.8003 50.2807 23.8683C46.8559 17.9363 39.2702 15.9042 33.3376 19.3294C27.405 22.7546 25.3721 30.3401 28.7969 36.2721C32.2217 42.2041 39.8074 44.2361 45.74 40.8109Z" stroke="url(#paint0_linear)" strokeWidth="0.6"/>
|
||||||
|
<path d="M48.5691 45.7111C55.2842 41.8341 57.5856 33.2485 53.7094 26.5346C49.8331 19.8208 41.2471 17.521 34.5319 21.398C27.8168 25.275 25.5154 33.8606 29.3916 40.5745C33.2679 47.2883 41.8539 49.5881 48.5691 45.7111Z" stroke="url(#paint1_linear)" strokeWidth="0.6"/>
|
||||||
|
<defs>
|
||||||
|
<linearGradient id="paint0_linear" x1="1.76204" y1="0.999985" x2="96.3599" y2="20.9846" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
<linearGradient id="paint1_linear" x1="3.70122" y1="1.96678" x2="93.8892" y2="21.0474" gradientUnits="userSpaceOnUse"><stop stopColor="#8258C8"/><stop offset="0.315" stopColor="#6766C8"/><stop offset="1" stopColor="#2C84C8"/></linearGradient>
|
||||||
|
</defs>
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
}
|
||||||
26
components/shared/icons/SearchIcon.tsx
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
export function SearchIcon({ className = "" }: { className?: string }) {
|
||||||
|
return (
|
||||||
|
<svg
|
||||||
|
className={className}
|
||||||
|
width="16"
|
||||||
|
height="16"
|
||||||
|
viewBox="0 0 16 16"
|
||||||
|
fill="none"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
>
|
||||||
|
<circle
|
||||||
|
cx="7"
|
||||||
|
cy="7"
|
||||||
|
r="5.5"
|
||||||
|
stroke="currentColor"
|
||||||
|
strokeWidth="1.5"
|
||||||
|
/>
|
||||||
|
<path
|
||||||
|
d="M11 11L14.5 14.5"
|
||||||
|
stroke="currentColor"
|
||||||
|
strokeWidth="1.5"
|
||||||
|
strokeLinecap="round"
|
||||||
|
/>
|
||||||
|
</svg>
|
||||||
|
);
|
||||||
|
}
|
||||||
70
data/navigation.ts
Normal file
@@ -0,0 +1,70 @@
|
|||||||
|
export interface NavItem {
|
||||||
|
label: string;
|
||||||
|
href: string;
|
||||||
|
children?: NavItem[];
|
||||||
|
}
|
||||||
|
|
||||||
|
export const navigationData: NavItem[] = [
|
||||||
|
{
|
||||||
|
label: "Home",
|
||||||
|
href: "#",
|
||||||
|
children: [
|
||||||
|
{ label: "Home 1", href: "#" },
|
||||||
|
{ label: "Home 2", href: "#" },
|
||||||
|
{ label: "Home 3", href: "#" },
|
||||||
|
{ label: "Home 4", href: "#" },
|
||||||
|
{ label: "Home 5", href: "#" },
|
||||||
|
{ label: "Home 6", href: "#" },
|
||||||
|
{ label: "Home 7", href: "#" },
|
||||||
|
{ label: "Home 8", href: "#" },
|
||||||
|
{ label: "Home 9", href: "#" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Pages",
|
||||||
|
href: "#",
|
||||||
|
children: [
|
||||||
|
{ label: "About Us", href: "#" },
|
||||||
|
{ label: "About Us 2", href: "#" },
|
||||||
|
{ label: "Team", href: "#" },
|
||||||
|
{ label: "Gallery Grid", href: "#" },
|
||||||
|
{ label: "Gallery Masonry", href: "#" },
|
||||||
|
{ label: "Pricing plans", href: "#" },
|
||||||
|
{ label: "FAQ", href: "#" },
|
||||||
|
{ label: "Typography", href: "#" },
|
||||||
|
{ label: "404", href: "#" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Services",
|
||||||
|
href: "#",
|
||||||
|
children: [
|
||||||
|
{ label: "Services Page", href: "#" },
|
||||||
|
{ label: "Service Single", href: "#" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Shop",
|
||||||
|
href: "#",
|
||||||
|
children: [
|
||||||
|
{ label: "Products", href: "#" },
|
||||||
|
{ label: "Single Product", href: "#" },
|
||||||
|
{ label: "Shopping cart", href: "#" },
|
||||||
|
{ label: "Checkout", href: "#" },
|
||||||
|
{ label: "My account", href: "#" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Blog",
|
||||||
|
href: "#",
|
||||||
|
children: [
|
||||||
|
{ label: "Blog Classic", href: "#" },
|
||||||
|
{ label: "Blog Grid", href: "#" },
|
||||||
|
{ label: "Blog Single", href: "#" },
|
||||||
|
],
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "Contacts",
|
||||||
|
href: "#",
|
||||||
|
},
|
||||||
|
];
|
||||||
@@ -1,18 +1,19 @@
|
|||||||
import { defineConfig, globalIgnores } from "eslint/config";
|
import { FlatCompat } from "@eslint/eslintrc";
|
||||||
import nextVitals from "eslint-config-next/core-web-vitals";
|
import { dirname } from "path";
|
||||||
import nextTs from "eslint-config-next/typescript";
|
import { fileURLToPath } from "url";
|
||||||
|
|
||||||
const eslintConfig = defineConfig([
|
const __filename = fileURLToPath(import.meta.url);
|
||||||
...nextVitals,
|
const __dirname = dirname(__filename);
|
||||||
...nextTs,
|
|
||||||
// Override default ignores of eslint-config-next.
|
const compat = new FlatCompat({
|
||||||
globalIgnores([
|
baseDirectory: __dirname,
|
||||||
// Default ignores of eslint-config-next:
|
});
|
||||||
".next/**",
|
|
||||||
"out/**",
|
const eslintConfig = [
|
||||||
"build/**",
|
...compat.extends("next/core-web-vitals", "next/typescript"),
|
||||||
"next-env.d.ts",
|
{
|
||||||
]),
|
ignores: [".next/**", "out/**", "build/**", "next-env.d.ts"],
|
||||||
]);
|
},
|
||||||
|
];
|
||||||
|
|
||||||
export default eslintConfig;
|
export default eslintConfig;
|
||||||
|
|||||||
@@ -1 +0,0 @@
|
|||||||
<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>
|
|
||||||
|
Before Width: | Height: | Size: 391 B |
@@ -1 +0,0 @@
|
|||||||
<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>
|
|
||||||
|
Before Width: | Height: | Size: 1.0 KiB |
|
After Width: | Height: | Size: 161 KiB |
BIN
public/images/aiero/Dots.png
Normal file
|
After Width: | Height: | Size: 1.3 KiB |
BIN
public/images/aiero/Layer_2-min.jpg
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
public/images/aiero/assistant-artificial-intelligence-min.png
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
public/images/aiero/c0eb2845-min.png
Normal file
|
After Width: | Height: | Size: 86 KiB |
BIN
public/images/aiero/home-9-img.png
Normal file
|
After Width: | Height: | Size: 108 KiB |
BIN
public/images/aiero/home-9-top-bg-min.jpg
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
public/images/aiero/logo-dark.png
Normal file
|
After Width: | Height: | Size: 1.9 KiB |
@@ -1 +0,0 @@
|
|||||||
<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>
|
|
||||||
|
Before Width: | Height: | Size: 1.3 KiB |
@@ -1 +0,0 @@
|
|||||||
<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>
|
|
||||||
|
Before Width: | Height: | Size: 128 B |
@@ -1 +0,0 @@
|
|||||||
<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>
|
|
||||||
|
Before Width: | Height: | Size: 385 B |
@@ -1,7 +1,11 @@
|
|||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"target": "ES2017",
|
"target": "ES2017",
|
||||||
"lib": ["dom", "dom.iterable", "esnext"],
|
"lib": [
|
||||||
|
"dom",
|
||||||
|
"dom.iterable",
|
||||||
|
"esnext"
|
||||||
|
],
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
"skipLibCheck": true,
|
"skipLibCheck": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
@@ -11,7 +15,7 @@
|
|||||||
"moduleResolution": "bundler",
|
"moduleResolution": "bundler",
|
||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"isolatedModules": true,
|
"isolatedModules": true,
|
||||||
"jsx": "react-jsx",
|
"jsx": "preserve",
|
||||||
"incremental": true,
|
"incremental": true,
|
||||||
"plugins": [
|
"plugins": [
|
||||||
{
|
{
|
||||||
@@ -19,7 +23,9 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"paths": {
|
"paths": {
|
||||||
"@/*": ["./*"]
|
"@/*": [
|
||||||
|
"./*"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
@@ -30,5 +36,7 @@
|
|||||||
".next/dev/types/**/*.ts",
|
".next/dev/types/**/*.ts",
|
||||||
"**/*.mts"
|
"**/*.mts"
|
||||||
],
|
],
|
||||||
"exclude": ["node_modules"]
|
"exclude": [
|
||||||
|
"node_modules"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|||||||