Skip to content

Commit 461d1a7

Browse files
committed
upload 1.2
1 parent c9e0f20 commit 461d1a7

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link rel="icon" type="image/svg+xml" href="/src/img/Logo.png" />
5+
<link rel="icon" type="image/svg+xml" href="/src/img/Logo2.png" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>ApMC</title>
88
</head>

src/App.jsx

+7
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,15 @@ import Home from "./pages/Home";
55
import Libreria from "./pages/Libreria";
66
import Ia from "./pages/Ia";
77
import Web from "./pages/Web";
8+
import { useEffect } from "react";
89

910
function App() {
11+
useEffect(() => {
12+
const favicon = document.querySelector('link[rel="icon"]');
13+
if (favicon) {
14+
favicon.classList.add("rounded-lg");
15+
}
16+
}, []);
1017
return (
1118
<>
1219
<BrowserRouter>

src/components/TableCustom.jsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ export default function App() {
1212
return (
1313
<Table isStriped aria-label="Example static collection table">
1414
<TableHeader>
15-
<TableColumn className="tracking-tight font-semibold from-[#FF1CF7] to-[#b249f8] text-[2.5rem] lg:text-5xl bg-clip-text text-transparent bg-gradient-to-b">
15+
<TableColumn className="tracking-tight font-semibold from-[#FF1CF7] to-[#b249f8] text-[2rem] lg:text-5xl bg-clip-text text-transparent bg-gradient-to-b">
1616
Ventajas
1717
</TableColumn>
18-
<TableColumn className="tracking-tight font-semibold from-[#FF1CF7] to-[#b249f8] text-[2.5rem] lg:text-5xl bg-clip-text text-transparent bg-gradient-to-b">
19-
Datos Numéricos
18+
<TableColumn className="tracking-tight font-semibold from-[#FF1CF7] to-[#b249f8] text-[2rem] lg:text-5xl bg-clip-text text-transparent bg-gradient-to-b">
19+
Datos
2020
</TableColumn>
2121
</TableHeader>
22-
<TableBody className="tracking-tight font-semibold">
22+
<TableBody className="">
2323
<TableRow key="1">
2424
<TableCell>Eficiencia</TableCell>
2525
<TableCell>

src/img/Logo2.png

22.6 KB
Loading

0 commit comments

Comments
 (0)