-
+
+ {pathname !== "/" && }
);
diff --git a/app/globals.css b/app/globals.css
index 896688b..c17a6c6 100644
--- a/app/globals.css
+++ b/app/globals.css
@@ -1,12 +1,12 @@
* {
- padding: 0;
- margin: 0;
color: #333333;
}
*,
*::before,
*::after {
+ margin: 0;
+ padding: 0;
box-sizing: inherit;
}
@@ -34,38 +34,36 @@ main {
header {
display: grid;
grid-template-columns: auto 1fr;
- padding: 5px 40px;
+ padding: 0 20px;
position: relative;
- overflow: hidden;
- background-color: #f9f9f9;
z-index: 1;
- height: 70px;
+ height: 90px;
+ align-items: end;
}
header::after {
content: "";
top: 0;
- left: -40px;
+ left: -45px;
position: absolute;
background-color: #003e79;
height: 100%;
- width: 30%;
- min-width: 300px;
+ min-width: 350px;
transform: skew(45deg);
- z-index: 1;
+ z-index: 2;
}
header::before {
content: "";
top: 0;
- left: -20px;
+ left: -25px;
position: absolute;
background-color: rgb(1, 92, 184);
height: 100%;
- width: 30%;
- min-width: 300px;
+ width: 10%;
+ min-width: 350px;
transform: skew(45deg);
- z-index: 1;
+ z-index: 2;
}
footer {
@@ -88,7 +86,6 @@ footer p {
.mainContainer {
position: relative;
display: grid;
- grid-template-rows: auto 1fr;
align-items: center;
justify-items: center;
height: 100%;
@@ -588,10 +585,6 @@ table td:last-child {
border-radius: 0;
}
- .mainContainer {
- grid-template-rows: 40px 1fr;
- }
-
.img {
background-image: url("/rock.jpg");
right: 50%;
diff --git a/app/layout.tsx b/app/layout.tsx
index bb5e5fe..7c6a5a1 100644
--- a/app/layout.tsx
+++ b/app/layout.tsx
@@ -1,5 +1,5 @@
import type { Metadata } from "next";
-import { Poppins } from "next/font/google";
+import { Inter } from "next/font/google";
import Header from "./Components/layout/Header/Header";
import Footer from "./Components/layout/Footer/Footer";
@@ -7,11 +7,7 @@ import Footer from "./Components/layout/Footer/Footer";
import "./globals.css";
import { ToastProvider } from "./Components/layout/ToastProvider";
-const poppins = Poppins({
- variable: "--font-poppins",
- subsets: ["latin"],
- weight: ["400", "600", "700"],
-});
+const inter = Inter({ subsets: ["latin"], weight: ["400", "700"] });
export const metadata: Metadata = {
title: "Servicio AT",
@@ -27,7 +23,7 @@ export default function RootLayout({
}>) {
return (
-
+
{children}
diff --git a/public/logo_fes.png b/public/logo_fes.png
index ac3aec2..01cc19c 100644
Binary files a/public/logo_fes.png and b/public/logo_fes.png differ