Compare commits
14 Commits
version_6_
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| de0ba31d72 | |||
|
|
3d102e0d7b | ||
| 191c81697a | |||
| 2aae4ce4e8 | |||
| 4cba1bf270 | |||
| 99318a67ea | |||
| 3dfe616831 | |||
| 414dd3b58d | |||
| 34c8036613 | |||
| 1019392c84 | |||
| d7fcb86f17 | |||
| 98b60c9c42 | |||
| d4630c1350 | |||
| e1b650552d |
43
src/app/services/page.tsx
Normal file
43
src/app/services/page.tsx
Normal file
@@ -0,0 +1,43 @@
|
||||
import React from 'react';
|
||||
|
||||
const Services = () => {
|
||||
return (
|
||||
<div className="min-h-screen bg-gray-100 flex flex-col items-center justify-center p-4">
|
||||
<main className="bg-white p-8 rounded-lg shadow-md max-w-2xl w-full text-center">
|
||||
<h1 className="text-4xl font-bold text-gray-900 mb-4">Our Services</h1>
|
||||
<p className="text-lg text-gray-700 mb-6">
|
||||
Discover the range of professional services we offer to help you achieve your goals.
|
||||
We are committed to delivering high-quality solutions tailored to your needs.
|
||||
</p>
|
||||
<div className="grid grid-cols-1 md:grid-cols-2 gap-6 text-left">
|
||||
<div className="p-4 border border-gray-200 rounded-md">
|
||||
<h2 className="text-xl font-semibold text-gray-800 mb-2">Service A</h2>
|
||||
<p className="text-gray-600">
|
||||
A detailed description of Service A, highlighting its benefits and what it entails for our clients.
|
||||
</p>
|
||||
</div>
|
||||
<div className="p-4 border border-gray-200 rounded-md">
|
||||
<h2 className="text-xl font-semibold text-gray-800 mb-2">Service B</h2>
|
||||
<p className="text-gray-600">
|
||||
An overview of Service B, explaining how it addresses specific challenges and provides value.
|
||||
</p>
|
||||
</div>
|
||||
<div className="p-4 border border-gray-200 rounded-md">
|
||||
<h2 className="text-xl font-semibold text-gray-800 mb-2">Service C</h2>
|
||||
<p className="text-gray-600">
|
||||
Information about Service C, outlining its key features and the expertise we bring to deliver it.
|
||||
</p>
|
||||
</div>
|
||||
<div className="p-4 border border-gray-200 rounded-md">
|
||||
<h2 className="text-xl font-semibold text-gray-800 mb-2">Service D</h2>
|
||||
<p className="text-gray-600">
|
||||
A brief explanation of Service D, demonstrating our commitment to comprehensive support and solutions.
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
||||
export default Services;
|
||||
@@ -1,19 +1,19 @@
|
||||
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700&display=swap');
|
||||
@import "tailwindcss";
|
||||
@import "./styles/masks.css";
|
||||
@import "./styles/animations.css";
|
||||
|
||||
:root {
|
||||
/* @colorThemes/lightTheme/grayBlueAccent */
|
||||
--background: #000000;
|
||||
--card: #f1f8ff;
|
||||
--foreground: #001122;
|
||||
--primary-cta: #15479c;
|
||||
--primary-cta-text: #f5faff;
|
||||
--secondary-cta: #ffffff;
|
||||
--secondary-cta-text: #001122;
|
||||
--accent: #a8cce8;
|
||||
--background-accent: #7ba3cf;
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000f06e6;
|
||||
--primary-cta: #000000;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #000f06e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
|
||||
/* @layout/border-radius/rounded */
|
||||
--radius: 0.5rem;
|
||||
@@ -88,7 +88,7 @@
|
||||
--color-background-accent: var(--background-accent);
|
||||
|
||||
/* Fonts */
|
||||
--font-sans: 'Inter', 'Open Sans', sans-serif;
|
||||
--font-sans: 'DM Sans', sans-serif;
|
||||
--font-mono: monospace;
|
||||
|
||||
/* Border Radius */
|
||||
@@ -135,7 +135,7 @@ html {
|
||||
body {
|
||||
margin: 0;
|
||||
color: var(--foreground);
|
||||
font-family: 'Inter', 'Open Sans', sans-serif;
|
||||
font-family: 'DM Sans', sans-serif;
|
||||
position: relative;
|
||||
min-height: 100vh;
|
||||
overscroll-behavior: none;
|
||||
@@ -152,7 +152,7 @@ h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
font-family: 'Inter', 'Open Sans', sans-serif;
|
||||
font-family: 'Manrope', sans-serif;
|
||||
}
|
||||
|
||||
button {
|
||||
|
||||
Reference in New Issue
Block a user