Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

To correct github star numbers #2

Closed
wants to merge 9 commits into from
Closed
Show file tree
Hide file tree
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
85 changes: 40 additions & 45 deletions app/layout.tsx
Original file line number Diff line number Diff line change
@@ -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 (
<html lang="en">
<title>{metadata.title}</title>
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TLL6DW2H6N"/>
<script
dangerouslySetInnerHTML={{__html: `
export default function RootLayout({children,}: { children: React.ReactNode }) {
return (
<html lang="en">
<title>{metadata.title}</title>
<head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-TLL6DW2H6N"/>
<script
dangerouslySetInnerHTML={{__html: `
window.dataLayer = window.dataLayer || [];
function gtag(){window.dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-TLL6DW2H6N');
`,}}
/>
<script
dangerouslySetInnerHTML={{
__html: `
/>
<script
dangerouslySetInnerHTML={{
__html: `
(function(h,o,t,j,a,r){
h.hj=h.hj||function(){(h.hj.q=h.hj.q||[]).push(arguments)};
h._hjSettings={hjid:3609484,hjsv:6};
Expand All @@ -49,31 +44,31 @@ export default function RootLayout({
a.appendChild(r);
})(window,document,'https://static.hotjar.com/c/hotjar-','.js?sv=');
`,
}}
/>
<script
dangerouslySetInnerHTML={{
__html: `
}}
/>
<script
dangerouslySetInnerHTML={{
__html: `
(function(c,l,a,r,i,t,y){
c[a]=c[a]||function(){(c[a].q=c[a].q||[]).push(arguments)};
t=l.createElement(r);t.async=1;t.src="https://www.clarity.ms/tag/"+i;
y=l.getElementsByTagName(r)[0];y.parentNode.insertBefore(t,y);
})(window, document, "clarity", "script", "iu0391ggta");
`,
}}
/>
<script type="text/javascript" id="hs-script-loader" async defer src="//js-na1.hs-scripts.com/43912677.js"/>
<title>Keploy: Open Source API Test Case and Data Mock Generation using AI for Developers</title>
</head>
<meta name="keywords" content={metadata.keywords} />
<meta name="description" content={metadata.description} />
<body className={`${inter.variable} font-inter antialiased bg-white text-gray-900 tracking-tight`}>
}}
/>
<script type="text/javascript" id="hs-script-loader" async defer src="//js-na1.hs-scripts.com/43912677.js"/>
<title>Keploy: Open Source API Test Case and Data Mock Generation using AI for Developers</title>
</head>
<meta name="keywords" content={metadata.keywords} />
<meta name="description" content={metadata.description} />
<body className={`${inter.variable} font-inter antialiased bg-white text-gray-900 tracking-tight`}>
<div className="flex flex-col overflow-hidden supports-[overflow:clip]:overflow-clip">
<Header />
{children}
{/*<Banner />*/}
<Header />
{children}
{/*<Banner />*/}
</div>
</body>
</html>
)
</body>
</html>
)
}
17 changes: 17 additions & 0 deletions components/community.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
/* when you add new card to the community circle graph, you can change the styles here for small adjustment*/
.ciclegraph:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: calc(100% - 2px * 2);
height: calc(100% - 2px * 2);
}

.ciclegraph .circle {
position: absolute;
top: 50%; /* adjust this value to shift cards vertically */
left: calc(50% - 100px); /* adjust this value to shift cards horizontally */
margin: calc(-100px / 2);
width: 250px;
}
Loading