From 8d8689d0607b551a8716aa3c8e026eccb4fcda6b Mon Sep 17 00:00:00 2001 From: Susmita-Dey Date: Sun, 30 Mar 2025 18:15:39 +0530 Subject: [PATCH] feat: add favicon for keploy website subpages Signed-off-by: Susmita-Dey --- app/layout.tsx | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/app/layout.tsx b/app/layout.tsx index ac99439c..d3c43ec2 100644 --- a/app/layout.tsx +++ b/app/layout.tsx @@ -1,17 +1,17 @@ -'use client'; +"use client"; -import './css/style.css'; -import '@/app/(default)/webstories/css/styles.css'; -import { Inter } from 'next/font/google'; -import Header from '@/components/ui/header'; -import Script from 'next/script'; -import React, { ReactNode } from 'react'; -import Head from 'next/head'; +import "./css/style.css"; +import "@/app/(default)/webstories/css/styles.css"; +import { Inter } from "next/font/google"; +import Header from "@/components/ui/header"; +import Script from "next/script"; +import React, { ReactNode } from "react"; +import Head from "next/head"; const inter = Inter({ - subsets: ['latin'], - variable: '--font-inter', - display: 'swap', + subsets: ["latin"], + variable: "--font-inter", + display: "swap", }); export interface Metadata { @@ -22,12 +22,12 @@ export interface Metadata { } export const defaultMetadata: Metadata = { - title: 'Keploy | Open Source Stubs and API Test Generator for Developer', + title: "Keploy | Open Source Stubs and API Test Generator for Developer", keywords: - 'Integration testing, e2e Testing, ai testing, Unit Testing, API Testing, open source ai testing tool, Service Mocking, Dependency Mocking', + "Integration testing, e2e Testing, ai testing, Unit Testing, API Testing, open source ai testing tool, Service Mocking, Dependency Mocking", description: - 'Keploy is AI based test case and stubs/mocks generator for integration and unit testing. 90% test coverage in minutes with open source testing tool', - image: 'images/logo.svg', + "Keploy is AI based test case and stubs/mocks generator for integration and unit testing. 90% test coverage in minutes with open source testing tool", + image: "/favicon.ico", }; interface RootLayoutProps {