3 Commits

Author SHA1 Message Date
877fee42fb Update src/app/page.tsx 2026-03-09 22:10:30 +00:00
a65723ecc2 Update src/app/layout.tsx 2026-03-09 22:10:29 +00:00
63e40f327e Merge version_2 into main
Merge version_2 into main
2026-03-09 22:08:38 +00:00
2 changed files with 8 additions and 13 deletions

View File

@@ -1,14 +1,8 @@
import type { Metadata } from "next"; import type { Metadata } from "next";
import { Geist, Geist_Mono } from "next/font/google"; import { Inter } from "next/font/google";
import "./globals.css"; import "./globals.css";
const geist = Geist({ const inter = Inter({ subsets: ["latin"] });
variable: "--font-geist-sans", subsets: ["latin"],
});
const geistMono = Geist_Mono({
variable: "--font-geist-mono", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Create Next App", description: "Generated by create next app"}; title: "Create Next App", description: "Generated by create next app"};
@@ -20,9 +14,7 @@ export default function RootLayout({
}) { }) {
return ( return (
<html lang="en"> <html lang="en">
<body className={`${geist.variable} ${geistMono.variable} antialiased`}> <body className={inter.className}>{children}
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `

View File

@@ -64,7 +64,7 @@ export default function LandingPage() {
imageSrc: "http://img.b2bpic.net/free-photo/happy-positive-mature-business-leader-enjoying-coffee_74855-3525.jpg?_wi=2", imageAlt: "Abraham Enriquez campaign"}, imageSrc: "http://img.b2bpic.net/free-photo/happy-positive-mature-business-leader-enjoying-coffee_74855-3525.jpg?_wi=2", imageAlt: "Abraham Enriquez campaign"},
]} ]}
buttons={[ buttons={[
{ text: "Support Our Campaign", href: "#contact" }, { text: "Volunteer Today", href: "#contact" },
{ text: "Learn More", href: "#about" }, { text: "Learn More", href: "#about" },
]} ]}
buttonAnimation="slide-up" buttonAnimation="slide-up"
@@ -80,7 +80,10 @@ export default function LandingPage() {
description="Abraham Enriquez is a dedicated Republican and lifelong Lubbock resident with a proven track record of success. His experience working with the Trump administration on economic policy and border security gives him the expertise Texas District 19 deserves. Committed to constitutional values, job creation, and securing our future." description="Abraham Enriquez is a dedicated Republican and lifelong Lubbock resident with a proven track record of success. His experience working with the Trump administration on economic policy and border security gives him the expertise Texas District 19 deserves. Committed to constitutional values, job creation, and securing our future."
imageSrc="http://img.b2bpic.net/free-photo/shirt-outdoor-shirt-girl-relationship_1157-3386.jpg?_wi=3" imageSrc="http://img.b2bpic.net/free-photo/shirt-outdoor-shirt-girl-relationship_1157-3386.jpg?_wi=3"
imageAlt="Abraham Enriquez with community" imageAlt="Abraham Enriquez with community"
buttons={[{ text: "View Full Bio", href: "#experience" }]} buttons={[
{ text: "View Full Bio", href: "#experience" },
{ text: "Donate to Campaign", href: "https://donate.enriquez2024.com" }
]}
useInvertedBackground={false} useInvertedBackground={false}
/> />
</div> </div>