Skip to content

Commit 6dfc500

Browse files
Merge branch 'main' into feature/AddWorflowNotify
2 parents 83b2052 + 309c5b3 commit 6dfc500

2 files changed

Lines changed: 8 additions & 6 deletions

File tree

src/app/layout.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
import type { Metadata } from "next";
2-
import { Geist, Geist_Mono } from "next/font/google";
1+
import type {Metadata} from "next";
2+
import {Geist, Geist_Mono} from "next/font/google";
33
import "./globals.css";
44

55
const geistSans = Geist({
@@ -23,7 +23,7 @@ export default function RootLayout({
2323
children: React.ReactNode;
2424
}>) {
2525
return (
26-
<html lang="en">
26+
<html lang="es">
2727
<body
2828
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
2929
>

src/app/page.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,11 @@ export default function Home() {
22
return (
33
<div className="grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20">
44
<main className="flex flex-col gap-[32px] row-start-2 items-center sm:items-start">
5-
<h1>
6-
My first deploy with Github Actions and use my own action v1 !!!
7-
</h1>
5+
<h2>
6+
My first deploy with Github Actions and use my own action v1 !!! 🙉
7+
</h2>
8+
<p>HELLO!!!!!!!!</p>
9+
<small>BYE!!!!!</small>
810
</main>
911
</div>
1012
);

0 commit comments

Comments
 (0)