Merge version_3 into main #5
@@ -1,14 +1,8 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Geist, Geist_Mono } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
|
||||
const geist = Geist({
|
||||
variable: "--font-geist-sans", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const geistMono = Geist_Mono({
|
||||
variable: "--font-geist-mono", subsets: ["latin"],
|
||||
});
|
||||
const inter = Inter({ subsets: ["latin"] });
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Create Next App", description: "Generated by create next app"};
|
||||
@@ -20,9 +14,7 @@ export default function RootLayout({
|
||||
}) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body className={`${geist.variable} ${geistMono.variable} antialiased`}>
|
||||
{children}
|
||||
|
||||
<body className={inter.className}>{children}
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
|
||||
@@ -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"},
|
||||
]}
|
||||
buttons={[
|
||||
{ text: "Support Our Campaign", href: "#contact" },
|
||||
{ text: "Volunteer Today", href: "#contact" },
|
||||
{ text: "Learn More", href: "#about" },
|
||||
]}
|
||||
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."
|
||||
imageSrc="http://img.b2bpic.net/free-photo/shirt-outdoor-shirt-girl-relationship_1157-3386.jpg?_wi=3"
|
||||
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}
|
||||
/>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user