Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -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 {
Expand All @@ -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 {
Expand Down