Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
Commit 2c0d7771 authored by LENIX.IO's avatar LENIX.IO
Browse files

Merge branch 'main' into 'master'

Updated :

See merge request !3
parents afc4b529 cdd0dfaa
No related branches found
No related tags found
1 merge request!3Updated :
Pipeline #50893 passed
Showing
with 1189 additions and 745 deletions
......@@ -4,10 +4,10 @@
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React + TS</title>
<title>LENIX.IO</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
</html>
\ No newline at end of file
This diff is collapsed.
......@@ -5,29 +5,30 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"build": "tsc && vite build",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"lucide-react": "^0.344.0",
"react": "^18.3.1",
"react-dom": "^18.3.1"
"@calcom/embed-react": "1.3.0",
"lucide-react": "0.344.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.18",
"eslint": "^9.9.1",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.9.0",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vite": "^5.4.2"
"@eslint/js": "8.56.0",
"@types/react": "18.2.48",
"@types/react-dom": "18.2.18",
"@vitejs/plugin-react": "4.2.1",
"autoprefixer": "10.4.17",
"eslint": "8.56.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-refresh": "0.4.5",
"globals": "13.24.0",
"postcss": "8.4.33",
"tailwindcss": "3.4.1",
"typescript": "5.3.3",
"typescript-eslint": "7.0.1",
"vite": "5.0.12"
}
}
}
\ No newline at end of file
public/images/cicd_automation.jpg

356 KiB

public/images/infrastructure_cloud.jpg

382 KiB

public/images/landing_pages.jpg

236 KiB

public/images/linux_workstation.jpg

497 KiB

public/images/logos/altran.png

11 KiB

public/images/logos/arcatem.png

18.3 KiB

public/images/logos/charligroup.png

35.6 KiB

public/images/logos/linagora.png

15 KiB

public/images/logos/rte.png

20.2 KiB

public/images/logos/sagemcom.png

20.8 KiB

public/images/logos/sfr.png

18.2 KiB

public/images/logos/thales.png

10.1 KiB

public/images/security_monitoring.jpg

416 KiB

This diff is collapsed.
@tailwind base;
@tailwind components;
@tailwind utilities;
@keyframes scroll {
0% {
transform: translateX(0);
}
100% {
transform: translateX(-50%);
}
}
.animate-scroll {
animation: scroll 30s linear infinite;
}
@keyframes pulse {
0%, 100% {
opacity: 1;
transform: scale(1);
}
50% {
opacity: 0.5;
transform: scale(1.1);
}
}
\ No newline at end of file
import { StrictMode } from 'react';
import { createRoot } from 'react-dom/client';
import App from './App.tsx';
import App from './App';
import './index.css';
createRoot(document.getElementById('root')!).render(
const rootElement = document.getElementById('root');
if (!rootElement) throw new Error('Failed to find the root element');
createRoot(rootElement).render(
<StrictMode>
<App />
</StrictMode>
);
);
\ No newline at end of file
......@@ -2,7 +2,11 @@
export default {
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
theme: {
extend: {},
extend: {
animation: {
scroll: 'scroll 30s linear infinite',
},
},
},
plugins: [],
};
};
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment