diff --git a/app/layout.tsx b/app/layout.tsx index 4159d8a8..d8ab2c3c 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,45 +1,40 @@ import './css/style.css' -import { Inter } from 'next/font/google' +import {Inter} from 'next/font/google' import Header from '@/components/ui/header' -import Banner from '@/components/banner' -import {Head} from "next/document"; +import React from 'react'; + const inter = Inter({ - subsets: ['latin'], - variable: '--font-inter', - display: 'swap' + subsets: ['latin'], + variable: '--font-inter', + display: 'swap' }) export const metadata = { - title: 'Open Source Stubs and API Test Generator for Developer', - keywords: "API testing, e2e Testing, ai testing, open source ai testing tool, Service Mocking, Dependency Mocking", - description: 'Keploy is AI based test case and stubs/mocks generator for e2e testing. 90% test coverage in minutes with open source testing tool', + title: 'Open Source Stubs and API Test Generator for Developer', + keywords: "API testing, e2e Testing, ai testing, open source ai testing tool, Service Mocking, Dependency Mocking", + description: 'Keploy is AI based test case and stubs/mocks generator for e2e testing. 90% test coverage in minutes with open source testing tool', } -export default function RootLayout({ - children, -}: { - children: React.ReactNode -}) { - return ( - - {metadata.title} - -