Skip to content

Commit

Permalink
add google verificaion html
Browse files Browse the repository at this point in the history
  • Loading branch information
StarOne01 committed May 11, 2024
1 parent 770b0a8 commit ad9d4c8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 14 deletions.
11 changes: 0 additions & 11 deletions src/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,6 @@
}
}

body {
color: rgb(var(--foreground-rgb));
background: linear-gradient(
to bottom,
transparent,
rgb(var(--background-end-rgb))
)
rgb(var(--background-start-rgb));

scroll-behavior: smooth;
}

.container {
height: 80vh;
Expand Down
11 changes: 11 additions & 0 deletions src/app/google7e961acacaad.html/page.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react';

const GoogleConsoleVerificationPage: React.FC = () => {
const htmlCode = 'google-site-verification: google7e961acacaad.html';

return (
<div dangerouslySetInnerHTML={{ __html: htmlCode }} />
);
};

export default GoogleConsoleVerificationPage;
4 changes: 1 addition & 3 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@ import { ChevronDownIcon, PhoneIcon, PlayCircleIcon } from '@heroicons/react/20/
const poppins300 = Poppins({ weight: "300", subsets: ['latin'] })
const poppins400 = Poppins({ weight: "400", subsets: ['latin'] })
const products = [


{ name: 'Analytics', description: 'Get a better understanding of your traffic', href: '#', icon: ChartPieIcon },
{ name: 'Engagement', description: 'Speak directly to your customers', href: '#', icon: CursorArrowRaysIcon },
{ name: 'Security', description: 'Your customers’ data will be safe and secure', href: '#', icon: FingerPrintIcon },
Expand All @@ -45,7 +43,7 @@ function classNames(...classes: any) {
function Nav() {
const [mobileMenuOpen, setMobileMenuOpen] = useState(false)
return (
<header className="bg-trasparent z-10 text-black dark:text-white dark:bg-black backdrop-blur-sm fixed w-full">
<header className="bg-trasparent z-10 text-black dark:text-white backdrop-blur-sm fixed w-full">
<nav className="mx-auto flex max-w-7xl items-center justify-between p-6 lg:px-8" aria-label="Global">
<div className="flex lg:flex-1">
<a href="#" className="-m-1.5 font-semibold p-1.5">
Expand Down

0 comments on commit ad9d4c8

Please sign in to comment.