Initial commit

This commit is contained in:
2026-01-19 17:13:35 +02:00
commit 3a8fe8bed1
19 changed files with 2218 additions and 0 deletions

1
.env.production Normal file
View File

@@ -0,0 +1 @@
DISABLE_ESLINT_PLUGIN=true

View File

@@ -0,0 +1,62 @@
name: Build
on:
workflow_dispatch:
inputs:
branch:
description: 'Branch to build'
required: true
default: 'main'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout branch
uses: actions/checkout@v3
with:
ref: ${{ gitea.event.inputs.branch }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 24
- name: Install dependencies
run: |
set -euo pipefail
npm install --no-audit --silent 2>&1 | tee install.log
env:
NODE_OPTIONS: '--max-old-space-size=4096'
- name: Build (react-scripts build)
env:
CI: 'false'
NODE_OPTIONS: '--max-old-space-size=4096'
run: |
set -euo pipefail
npm run build 2>&1 | tee build.log
timeout-minutes: 5
- name: Verify build folder exists
run: test -d build || (echo "No build folder. Check build logs above."; exit 1)
- name: Upload logs on failure
if: failure()
uses: actions/upload-artifact@v3
with:
name: build-logs
path: |
install.log
build.log
npm-debug.log*
if-no-files-found: ignore
- name: Build completed
if: success()
run: echo "Build completed successfully"

41
package.json Normal file
View File

@@ -0,0 +1,41 @@
{
"name": "nestjs-enterprise",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-scripts": "^5.0.1",
"framer-motion": "^11.0.0",
"lucide-react": "^0.400.0"
},
"devDependencies": {
"tailwindcss": "^3.4.0",
"postcss": "^8.4.0",
"autoprefixer": "^10.4.0"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}

6
postcss.config.js Normal file
View File

@@ -0,0 +1,6 @@
module.exports = {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
}

1232
public/index.html Normal file

File diff suppressed because it is too large Load Diff

28
src/App.js Normal file
View File

@@ -0,0 +1,28 @@
import React from 'react';
import Header from './components/Header';
import Hero from './components/Hero';
import Accelerate from './components/Accelerate';
import TeamAugmentation from './components/TeamAugmentation';
import Companies from './components/Companies';
import Services from './components/Services';
import CTA from './components/CTA';
import Newsletter from './components/Newsletter';
import Footer from './components/Footer';
function App() {
return (
<div className="App">
<Header />
<Hero />
<Accelerate />
<TeamAugmentation />
<Companies />
<Services />
<CTA />
<Newsletter />
<Footer />
</div>
);
}
export default App;

View File

@@ -0,0 +1,96 @@
import React from 'react';
import { motion, useReducedMotion } from 'framer-motion';
import { Check } from 'lucide-react';
const fadeUpPreset = (delay = 0, duration = 1.2) => ({
initial: { opacity: 0, y: 20 },
whileInView: { opacity: 1, y: 0 },
viewport: { once: true, amount: 0.2 },
transition: { delay, duration, ease: "easeOut" }
});
const Accelerate = () => {
const shouldReduce = useReducedMotion();
const features = [
"Providing technical guidance & architectural reviews",
"Mentoring team members",
"Advising best practices",
"Addressing security & performance concerns",
"Performing in-depth code reviews",
"Long-term support (LTS) & upgrade assistance"
];
if (shouldReduce) {
return (
<section className="section-padding bg-gray-50">
<div className="container-custom">
<div className="grid lg:grid-cols-2 gap-12 items-center">
<div>
<h2 className="text-3xl md:text-4xl font-bold text-gray-900 mb-6">
Accelerate your development
</h2>
<p className="text-lg text-gray-600 mb-6 leading-relaxed">
We work alongside you to meet your deadlines while avoiding costly tech debt. Challenging issue? We've got you covered.
</p>
<p className="text-lg text-gray-600 mb-8 leading-relaxed">
Our goal is to help you get to market faster. Nest core team members will help you utilize best practices and choose the right strategy for unique goals.
</p>
<button className="text-nest-pink font-medium hover:text-nest-pink-dark transition-colors">
Contact us to learn more
</button>
</div>
<div className="space-y-4">
{features.map((feature, index) => (
<div key={index} className="flex items-start space-x-3">
<Check className="w-5 h-5 text-green-500 mt-1 flex-shrink-0" />
<span className="text-gray-700">{feature}</span>
</div>
))}
</div>
</div>
</div>
</section>
);
}
return (
<motion.section
{...fadeUpPreset(0.1, 1.0)}
className="section-padding bg-gray-50"
>
<div className="container-custom">
<div className="grid lg:grid-cols-2 gap-12 items-center">
<motion.div {...fadeUpPreset(0.2, 1.0)}>
<h2 className="text-3xl md:text-4xl font-bold text-gray-900 mb-6">
Accelerate your development
</h2>
<p className="text-lg text-gray-600 mb-6 leading-relaxed">
We work alongside you to meet your deadlines while avoiding costly tech debt. Challenging issue? We've got you covered.
</p>
<p className="text-lg text-gray-600 mb-8 leading-relaxed">
Our goal is to help you get to market faster. Nest core team members will help you utilize best practices and choose the right strategy for unique goals.
</p>
<button className="text-nest-pink font-medium hover:text-nest-pink-dark transition-colors">
Contact us to learn more
</button>
</motion.div>
<motion.div {...fadeUpPreset(0.3, 1.0)} className="space-y-4">
{features.map((feature, index) => (
<motion.div
key={index}
{...fadeUpPreset(0.4 + index * 0.05, 0.8)}
className="flex items-start space-x-3"
>
<Check className="w-5 h-5 text-green-500 mt-1 flex-shrink-0" />
<span className="text-gray-700">{feature}</span>
</motion.div>
))}
</motion.div>
</div>
</div>
</motion.section>
);
};
export default Accelerate;

61
src/components/CTA.js Normal file
View File

@@ -0,0 +1,61 @@
import React from 'react';
import { motion, useReducedMotion } from 'framer-motion';
const fadeUpPreset = (delay = 0, duration = 1.2) => ({
initial: { opacity: 0, y: 20 },
whileInView: { opacity: 1, y: 0 },
viewport: { once: true, amount: 0.2 },
transition: { delay, duration, ease: "easeOut" }
});
const CTA = () => {
const shouldReduce = useReducedMotion();
if (shouldReduce) {
return (
<section className="section-padding bg-gray-900">
<div className="container-custom text-center">
<h2 className="text-3xl md:text-4xl font-bold text-white mb-4">
Explore enterprise services today.
</h2>
<p className="text-lg text-gray-300 mb-8">
Let's achieve your most ambitious goals - together.
</p>
<button className="btn-primary">
Contact us
</button>
</div>
</section>
);
}
return (
<motion.section
{...fadeUpPreset(0.1, 1.0)}
className="section-padding bg-gray-900"
>
<div className="container-custom text-center">
<motion.h2
{...fadeUpPreset(0.2, 1.0)}
className="text-3xl md:text-4xl font-bold text-white mb-4"
>
Explore enterprise services today.
</motion.h2>
<motion.p
{...fadeUpPreset(0.3, 1.0)}
className="text-lg text-gray-300 mb-8"
>
Let's achieve your most ambitious goals - together.
</motion.p>
<motion.button
{...fadeUpPreset(0.4, 1.0)}
className="btn-primary"
>
Contact us
</motion.button>
</div>
</motion.section>
);
};
export default CTA;

121
src/components/Companies.js Normal file
View File

@@ -0,0 +1,121 @@
import React from 'react';
import { motion, useReducedMotion } from 'framer-motion';
const fadeUpPreset = (delay = 0, duration = 1.2) => ({
initial: { opacity: 0, y: 20 },
whileInView: { opacity: 1, y: 0 },
viewport: { once: true, amount: 0.2 },
transition: { delay, duration, ease: "easeOut" }
});
const Companies = () => {
const shouldReduce = useReducedMotion();
const companies = [
{ name: 'Sanofi', logo: 'https://enterprise.nestjs.com/sanofi.b18c1526.png', link: 'https://www.sanofi.com/' },
{ name: 'Adidas', logo: 'https://enterprise.nestjs.com/adidas.718f26f2.svg', link: 'https://adidas.com/' },
{ name: 'Autodesk', logo: 'https://enterprise.nestjs.com/autodesk.a7f2b58e.png', link: 'https://www.autodesk.com/' },
{ name: 'Mercedes', logo: 'https://enterprise.nestjs.com/mercedes.ee8047a9.png', link: 'https://www.mercedes-benz.com/' },
{ name: 'GitLab', logo: 'https://enterprise.nestjs.com/gitlab.4f9d2995.png', link: 'https://about.gitlab.com/' },
{ name: 'Red Hat', logo: 'https://enterprise.nestjs.com/red-hat.c5e6e64a.svg', link: 'https://www.redhat.com/' },
{ name: 'JetBrains', logo: 'https://enterprise.nestjs.com/jetbrains.536f2da5.svg', link: 'https://www.jetbrains.com/' },
{ name: 'Roche', logo: 'https://enterprise.nestjs.com/roche-logo.979d9061.png', link: 'https://roche.com/' },
{ name: 'Société Générale', logo: 'https://enterprise.nestjs.com/societe-generale-logo.ec64d013.png', link: 'https://www.societegenerale.fr/' },
{ name: 'TotalEnergies', logo: 'https://enterprise.nestjs.com/totalenergies.5a993082.svg', link: 'https://totalenergies.com/' },
{ name: 'Capgemini', logo: 'https://enterprise.nestjs.com/capgemini.a1d43b77.svg', link: 'https://capgemini.com/' },
{ name: 'REWE', logo: 'https://enterprise.nestjs.com/rewe.1250e1e4.svg', link: 'https://www.rewe-digital.com/' },
{ name: 'IBM', logo: 'https://enterprise.nestjs.com/ibm.b8c76e06.svg', link: 'https://www.ibm.com/' },
{ name: 'BMW', logo: 'https://enterprise.nestjs.com/bmw.0ce4c05c.svg' },
{ name: 'Decathlon', logo: 'https://enterprise.nestjs.com/decathlon.1f3c4744.png', link: 'https://www.decathlon.com/' }
];
if (shouldReduce) {
return (
<section className="section-padding bg-white">
<div className="container-custom text-center">
<h2 className="text-3xl md:text-4xl font-bold text-gray-900 mb-4">
Who is using Nest?
</h2>
<p className="text-lg text-gray-600 mb-12">
Nest is proudly powering a large ecosystem of enterprises and products out there. Wanna see your logo here?
<a href="#" className="text-nest-pink hover:text-nest-pink-dark font-medium">Find out more</a>.
</p>
<div className="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-8 items-center">
{companies.map((company, index) => (
<div key={index} className="flex items-center justify-center p-4">
{company.link ? (
<a href={company.link} target="_blank" rel="noopener noreferrer">
<img
src={company.logo}
alt={company.name}
className="max-h-12 w-auto opacity-60 hover:opacity-100 transition-opacity grayscale hover:grayscale-0"
/>
</a>
) : (
<img
src={company.logo}
alt={company.name}
className="max-h-12 w-auto opacity-60 hover:opacity-100 transition-opacity grayscale hover:grayscale-0"
/>
)}
</div>
))}
</div>
</div>
</section>
);
}
return (
<motion.section
{...fadeUpPreset(0.1, 1.0)}
className="section-padding bg-white"
>
<div className="container-custom text-center">
<motion.h2
{...fadeUpPreset(0.2, 1.0)}
className="text-3xl md:text-4xl font-bold text-gray-900 mb-4"
>
Who is using Nest?
</motion.h2>
<motion.p
{...fadeUpPreset(0.3, 1.0)}
className="text-lg text-gray-600 mb-12"
>
Nest is proudly powering a large ecosystem of enterprises and products out there. Wanna see your logo here?
<a href="#" className="text-nest-pink hover:text-nest-pink-dark font-medium">Find out more</a>.
</motion.p>
<motion.div
{...fadeUpPreset(0.4, 1.0)}
className="grid grid-cols-2 md:grid-cols-3 lg:grid-cols-5 gap-8 items-center"
>
{companies.map((company, index) => (
<motion.div
key={index}
{...fadeUpPreset(0.5 + index * 0.05, 0.8)}
className="flex items-center justify-center p-4"
>
{company.link ? (
<a href={company.link} target="_blank" rel="noopener noreferrer">
<img
src={company.logo}
alt={company.name}
className="max-h-12 w-auto opacity-60 hover:opacity-100 transition-opacity grayscale hover:grayscale-0"
/>
</a>
) : (
<img
src={company.logo}
alt={company.name}
className="max-h-12 w-auto opacity-60 hover:opacity-100 transition-opacity grayscale hover:grayscale-0"
/>
)}
</motion.div>
))}
</motion.div>
</div>
</motion.section>
);
};
export default Companies;

39
src/components/Footer.js Normal file
View File

@@ -0,0 +1,39 @@
import React from 'react';
import { Github, X } from 'lucide-react';
const Footer = () => {
return (
<footer className="bg-gray-100 py-8">
<div className="container-custom">
<div className="flex flex-col items-center space-y-4">
<div className="flex items-center space-x-4">
<a href="#" className="text-gray-600 hover:text-nest-pink transition-colors">
<Github className="w-5 h-5" />
</a>
<a href="#" className="text-gray-600 hover:text-nest-pink transition-colors">
<X className="w-5 h-5" />
</a>
</div>
<div className="text-center text-sm text-gray-600">
<p>
Official NestJS Consulting{' '}
<a href="https://trilon.io" className="text-nest-pink hover:text-nest-pink-dark font-medium">
Trilon.io
</a>
</p>
<p className="mt-1">
Copyright © 2017- 2026{' '}
<span className="text-nest-pink font-medium">Kamil Mysliwiec</span>
</p>
<p className="mt-1">
Designed by{' '}
<span className="text-nest-pink font-medium">Jakub Staron</span>
</p>
</div>
</div>
</div>
</footer>
);
};
export default Footer;

79
src/components/Header.js Normal file
View File

@@ -0,0 +1,79 @@
import React, { useState } from 'react';
import { Menu, X, ChevronDown, Github } from 'lucide-react';
const Header = () => {
const [isMenuOpen, setIsMenuOpen] = useState(false);
return (
<header className="fixed top-0 left-0 right-0 z-50 bg-black/90 backdrop-blur-sm">
<div className="container-custom">
<div className="flex items-center justify-between h-16">
{/* Logo */}
<div className="flex items-center">
<a href="https://enterprise.nestjs.com/" className="flex items-center">
<img
src="https://enterprise.nestjs.com/logo-small-gradient.76616405.svg"
alt="NestJS - A progressive Node.js framework"
className="h-8 w-auto"
/>
</a>
</div>
{/* Desktop Navigation */}
<nav className="hidden md:flex items-center space-x-8">
<a href="#" className="text-white hover:text-nest-pink transition-colors">
OUR WEBSITE
</a>
<a href="#" className="text-white hover:text-nest-pink transition-colors">
COURSES
</a>
<div className="relative group">
<button className="flex items-center text-white hover:text-nest-pink transition-colors">
<span className="bg-nest-red text-white text-xs px-2 py-1 rounded mr-2">NEW</span>
RESOURCES
<ChevronDown className="ml-1 w-4 h-4" />
</button>
</div>
</nav>
{/* Social Links */}
<div className="hidden md:flex items-center space-x-4">
<a href="#" className="text-white hover:text-nest-pink transition-colors">
<Github className="w-5 h-5" />
</a>
<a href="#" className="text-white hover:text-nest-pink transition-colors">
<X className="w-5 h-5" />
</a>
</div>
{/* Mobile Menu Button */}
<button
className="md:hidden text-white"
onClick={() => setIsMenuOpen(!isMenuOpen)}
>
{isMenuOpen ? <X className="w-6 h-6" /> : <Menu className="w-6 h-6" />}
</button>
</div>
{/* Mobile Menu */}
{isMenuOpen && (
<div className="md:hidden bg-black/95 backdrop-blur-sm border-t border-gray-800">
<div className="px-2 pt-2 pb-3 space-y-1">
<a href="#" className="block px-3 py-2 text-white hover:text-nest-pink transition-colors">
OUR WEBSITE
</a>
<a href="#" className="block px-3 py-2 text-white hover:text-nest-pink transition-colors">
COURSES
</a>
<a href="#" className="block px-3 py-2 text-white hover:text-nest-pink transition-colors">
RESOURCES
</a>
</div>
</div>
)}
</div>
</header>
);
};
export default Header;

77
src/components/Hero.js Normal file
View File

@@ -0,0 +1,77 @@
import React from 'react';
import { motion, useReducedMotion } from 'framer-motion';
const fadeUpPreset = (delay = 0, duration = 1.2) => ({
initial: { opacity: 0, y: 20 },
whileInView: { opacity: 1, y: 0 },
viewport: { once: true, amount: 0.2 },
transition: { delay, duration, ease: "easeOut" }
});
const Hero = () => {
const shouldReduce = useReducedMotion();
if (shouldReduce) {
return (
<section className="relative min-h-screen flex items-center bg-hero-pattern bg-cover bg-center bg-no-repeat">
<div className="absolute inset-0 bg-black/60"></div>
<div className="container-custom relative z-10">
<div className="max-w-2xl">
<h1 className="text-4xl md:text-6xl font-bold text-white mb-6">
Official support
</h1>
<p className="text-lg md:text-xl text-gray-200 mb-8 leading-relaxed">
Our Experts become your development partner to eliminate project risk, tackling the most ambitious projects - right by your side.
</p>
<div className="flex flex-col sm:flex-row gap-4">
<button className="btn-primary">
Get in touch
</button>
<button className="btn-secondary">
Read more
</button>
</div>
</div>
</div>
</section>
);
}
return (
<motion.section
{...fadeUpPreset(0.1, 1.0)}
className="relative min-h-screen flex items-center bg-hero-pattern bg-cover bg-center bg-no-repeat"
>
<div className="absolute inset-0 bg-black/60"></div>
<div className="container-custom relative z-10">
<div className="max-w-2xl">
<motion.h1
{...fadeUpPreset(0.2, 1.0)}
className="text-4xl md:text-6xl font-bold text-white mb-6"
>
Official support
</motion.h1>
<motion.p
{...fadeUpPreset(0.3, 1.0)}
className="text-lg md:text-xl text-gray-200 mb-8 leading-relaxed"
>
Our Experts become your development partner to eliminate project risk, tackling the most ambitious projects - right by your side.
</motion.p>
<motion.div
{...fadeUpPreset(0.4, 1.0)}
className="flex flex-col sm:flex-row gap-4"
>
<button className="btn-primary">
Get in touch
</button>
<button className="btn-secondary">
Read more
</button>
</motion.div>
</div>
</div>
</motion.section>
);
};
export default Hero;

View File

@@ -0,0 +1,102 @@
import React, { useState } from 'react';
import { motion, useReducedMotion } from 'framer-motion';
import { Send } from 'lucide-react';
const fadeUpPreset = (delay = 0, duration = 1.2) => ({
initial: { opacity: 0, y: 20 },
whileInView: { opacity: 1, y: 0 },
viewport: { once: true, amount: 0.2 },
transition: { delay, duration, ease: "easeOut" }
});
const Newsletter = () => {
const [email, setEmail] = useState('');
const shouldReduce = useReducedMotion();
const handleSubmit = (e) => {
e.preventDefault();
console.log('Newsletter signup:', email);
setEmail('');
};
if (shouldReduce) {
return (
<section className="section-padding bg-white">
<div className="container-custom">
<div className="max-w-2xl mx-auto text-center">
<h2 className="text-3xl md:text-4xl font-bold text-gray-900 mb-4">
Join our Newsletter
</h2>
<p className="text-lg text-gray-600 mb-8">
Subscribe to stay up to date with the latest Nest updates, features, and videos!
</p>
<form onSubmit={handleSubmit} className="flex flex-col sm:flex-row gap-4 max-w-md mx-auto">
<input
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
placeholder="Enter your email"
className="flex-1 px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-nest-pink focus:border-transparent"
required
/>
<button
type="submit"
className="bg-nest-pink hover:bg-nest-pink-dark text-white px-6 py-3 rounded-lg font-medium transition-colors flex items-center justify-center gap-2"
>
<Send className="w-4 h-4" />
Subscribe
</button>
</form>
</div>
</div>
</section>
);
}
return (
<motion.section
{...fadeUpPreset(0.1, 1.0)}
className="section-padding bg-white"
>
<div className="container-custom">
<div className="max-w-2xl mx-auto text-center">
<motion.h2
{...fadeUpPreset(0.2, 1.0)}
className="text-3xl md:text-4xl font-bold text-gray-900 mb-4"
>
Join our Newsletter
</motion.h2>
<motion.p
{...fadeUpPreset(0.3, 1.0)}
className="text-lg text-gray-600 mb-8"
>
Subscribe to stay up to date with the latest Nest updates, features, and videos!
</motion.p>
<motion.form
{...fadeUpPreset(0.4, 1.0)}
onSubmit={handleSubmit}
className="flex flex-col sm:flex-row gap-4 max-w-md mx-auto"
>
<input
type="email"
value={email}
onChange={(e) => setEmail(e.target.value)}
placeholder="Enter your email"
className="flex-1 px-4 py-3 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-nest-pink focus:border-transparent"
required
/>
<button
type="submit"
className="bg-nest-pink hover:bg-nest-pink-dark text-white px-6 py-3 rounded-lg font-medium transition-colors flex items-center justify-center gap-2"
>
<Send className="w-4 h-4" />
Subscribe
</button>
</motion.form>
</div>
</div>
</motion.section>
);
};
export default Newsletter;

120
src/components/Services.js Normal file
View File

@@ -0,0 +1,120 @@
import React from 'react';
import { motion, useReducedMotion } from 'framer-motion';
const fadeUpPreset = (delay = 0, duration = 1.2) => ({
initial: { opacity: 0, y: 20 },
whileInView: { opacity: 1, y: 0 },
viewport: { once: true, amount: 0.2 },
transition: { delay, duration, ease: "easeOut" }
});
const Services = () => {
const shouldReduce = useReducedMotion();
const services = [
{
icon: 'https://enterprise.nestjs.com/startup.b4dbf43d.svg',
title: 'DEVELOPMENT',
description: 'Achieve your goals faster with Nest experts on your team tackling challenging issues right by your side.'
},
{
icon: 'https://enterprise.nestjs.com/conversation.2689303c.svg',
title: 'TECHNICAL GUIDANCE',
description: 'Enable your team to get the most out of the technology. Ensure your solutions are secure and reliable.'
},
{
icon: 'https://enterprise.nestjs.com/big-data.88454030.svg',
title: 'MIGRATION ASSISTANCE',
description: 'We provide a comprehensive migration assistance, ensuring you are using the latest and greatest.'
},
{
icon: 'https://enterprise.nestjs.com/puzzle.a43aa4b7.svg',
title: 'IN-DEPTH CODE REVIEWS',
description: 'Frequent code reviews can eliminate potentially hazardous bugs and issues at an early stage while enforcing best practices.'
},
{
icon: 'https://enterprise.nestjs.com/protect.5939735a.svg',
title: 'LONG-TERM SUPPORT (LTS)',
description: 'Have peace of mind with Nest long-term support (LTS), priority fixes, upgrade assistance, and live troubleshooting.'
},
{
icon: 'https://enterprise.nestjs.com/hired.123ab98d.svg',
title: 'TEAM TRAININGS',
description: 'Level-up your team by having expert-led Nest trainings or workshops. Get everyone up-to-speed quickly.'
}
];
if (shouldReduce) {
return (
<section className="section-padding bg-gray-50">
<div className="container-custom">
<div className="text-center mb-16">
<h2 className="text-3xl md:text-4xl font-bold text-gray-900 mb-4">
How can we help you be successful?
</h2>
<p className="text-lg text-gray-600 max-w-3xl mx-auto">
Nest Enterprise Consulting includes a broad range of services to empower your team. We help you grow your business even long after our commitment is done.
</p>
</div>
<div className="grid md:grid-cols-2 lg:grid-cols-3 gap-8">
{services.map((service, index) => (
<div key={index} className="bg-white p-8 rounded-lg shadow-sm hover:shadow-md transition-shadow">
<div className="flex items-center justify-center w-16 h-16 mb-6 mx-auto">
<img src={service.icon} alt={service.title} className="w-12 h-12" />
</div>
<h3 className="text-lg font-bold text-nest-red mb-4 text-center">
{service.title}
</h3>
<p className="text-gray-600 text-center leading-relaxed">
{service.description}
</p>
</div>
))}
</div>
</div>
</section>
);
}
return (
<motion.section
{...fadeUpPreset(0.1, 1.0)}
className="section-padding bg-gray-50"
>
<div className="container-custom">
<motion.div {...fadeUpPreset(0.2, 1.0)} className="text-center mb-16">
<h2 className="text-3xl md:text-4xl font-bold text-gray-900 mb-4">
How can we help you be successful?
</h2>
<p className="text-lg text-gray-600 max-w-3xl mx-auto">
Nest Enterprise Consulting includes a broad range of services to empower your team. We help you grow your business even long after our commitment is done.
</p>
</motion.div>
<motion.div
{...fadeUpPreset(0.3, 1.0)}
className="grid md:grid-cols-2 lg:grid-cols-3 gap-8"
>
{services.map((service, index) => (
<motion.div
key={index}
{...fadeUpPreset(0.4 + index * 0.1, 0.8)}
className="bg-white p-8 rounded-lg shadow-sm hover:shadow-md transition-shadow"
>
<div className="flex items-center justify-center w-16 h-16 mb-6 mx-auto">
<img src={service.icon} alt={service.title} className="w-12 h-12" />
</div>
<h3 className="text-lg font-bold text-nest-red mb-4 text-center">
{service.title}
</h3>
<p className="text-gray-600 text-center leading-relaxed">
{service.description}
</p>
</motion.div>
))}
</motion.div>
</div>
</motion.section>
);
};
export default Services;

View File

@@ -0,0 +1,74 @@
import React from 'react';
import { motion, useReducedMotion } from 'framer-motion';
const fadeUpPreset = (delay = 0, duration = 1.2) => ({
initial: { opacity: 0, y: 20 },
whileInView: { opacity: 1, y: 0 },
viewport: { once: true, amount: 0.2 },
transition: { delay, duration, ease: "easeOut" }
});
const TeamAugmentation = () => {
const shouldReduce = useReducedMotion();
if (shouldReduce) {
return (
<section className="section-padding bg-nest-red">
<div className="container-custom">
<div className="grid lg:grid-cols-2 gap-12 items-center">
<div className="relative">
<img
src="https://enterprise.nestjs.com/support.cbdb04e7.png"
alt="Team augmentation illustration"
className="w-full max-w-md mx-auto"
/>
</div>
<div className="text-white">
<h2 className="text-3xl md:text-4xl font-bold mb-6">
Team augmentation. By your side at every step
</h2>
<p className="text-lg mb-8 leading-relaxed opacity-90">
Nest core team members can work directly with your team on a daily basis to help take your project to the next-level. Let us partner with you and your team to develop the most ambitious projects.
</p>
<button className="bg-white text-nest-red font-medium px-8 py-3 rounded-full hover:bg-gray-100 transition-colors">
Contact us to learn more
</button>
</div>
</div>
</div>
</section>
);
}
return (
<motion.section
{...fadeUpPreset(0.1, 1.0)}
className="section-padding bg-nest-red"
>
<div className="container-custom">
<div className="grid lg:grid-cols-2 gap-12 items-center">
<motion.div {...fadeUpPreset(0.2, 1.0)} className="relative">
<img
src="https://enterprise.nestjs.com/support.cbdb04e7.png"
alt="Team augmentation illustration"
className="w-full max-w-md mx-auto"
/>
</motion.div>
<motion.div {...fadeUpPreset(0.3, 1.0)} className="text-white">
<h2 className="text-3xl md:text-4xl font-bold mb-6">
Team augmentation. By your side at every step
</h2>
<p className="text-lg mb-8 leading-relaxed opacity-90">
Nest core team members can work directly with your team on a daily basis to help take your project to the next-level. Let us partner with you and your team to develop the most ambitious projects.
</p>
<button className="bg-white text-nest-red font-medium px-8 py-3 rounded-full hover:bg-gray-100 transition-colors">
Contact us to learn more
</button>
</motion.div>
</div>
</div>
</motion.section>
);
};
export default TeamAugmentation;

35
src/index.css Normal file
View File

@@ -0,0 +1,35 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
scroll-behavior: smooth;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
}
@layer components {
.btn-primary {
@apply bg-nest-pink hover:bg-nest-pink-dark text-white font-medium px-8 py-3 rounded-full transition-colors duration-200;
}
.btn-secondary {
@apply border-2 border-white text-white hover:bg-white hover:text-gray-900 font-medium px-8 py-3 rounded-full transition-all duration-200;
}
.section-padding {
@apply py-16 lg:py-24;
}
.container-custom {
@apply max-w-7xl mx-auto px-4 sm:px-6 lg:px-8;
}
}

13
src/index.js Normal file
View File

@@ -0,0 +1,13 @@
import React from 'react';
import { createRoot } from 'react-dom/client';
import './index.css';
import App from './App';
const container = document.getElementById('root');
const root = createRoot(container);
root.render(
<React.StrictMode>
<App />
</React.StrictMode>
);

26
tailwind.config.js Normal file
View File

@@ -0,0 +1,26 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
theme: {
extend: {
colors: {
'nest-pink': '#e91e63',
'nest-pink-dark': '#c2185b',
'nest-red': '#ea384c',
'nest-red-dark': '#d32f2f',
'gray-850': '#1f2937',
'gray-950': '#0f172a'
},
fontFamily: {
'sans': ['-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', 'sans-serif']
},
backgroundImage: {
'hero-pattern': "url('https://enterprise.nestjs.com/header-2.50296714.jpg')",
'support-pattern': "url('https://enterprise.nestjs.com/support.cbdb04e7.png')"
}
},
},
plugins: [],
}

5
vercel.json Normal file
View File

@@ -0,0 +1,5 @@
{
"installCommand": "npm install",
"buildCommand": "CI=false npm run build",
"outputDirectory": "build"
}