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

fix: links, icons, docs #27

Merged
merged 1 commit into from
May 17, 2024
Merged
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
6 changes: 6 additions & 0 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,12 @@ import BotFlow from "@/components/BotFlow";
export const metadata: Metadata = {
title: "Service as a Callgent - Break the silos among Users & Systems",
applicationName: "Callgent",
icons: [
{
url: process.env.NEXT_PUBLIC_SITE_ROOT + "/images/logo/logo.svg",
type: "image/svg+xml",
},
],
description:
"Revolutionize system integration with Callgent's AI-driven agent tools. Automate APIs, Slack, Emails, and more efficiently!",
keywords: [
Expand Down
4 changes: 2 additions & 2 deletions src/components/Blog/SingleBlog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const SingleBlog = ({ blog }: { blog: Blog }) => {
return (
<div className="group relative overflow-hidden rounded-sm bg-white shadow-one duration-300 hover:shadow-two dark:bg-dark dark:hover:shadow-gray-dark">
<Link
href="/blog-details"
href={process.env.NEXT_PUBLIC_BLOG_URL}
className="relative block aspect-[37/22] w-full"
>
<span className="absolute right-6 top-6 z-20 inline-flex items-center justify-center rounded-full bg-primary px-4 py-2 text-sm font-semibold capitalize text-white">
Expand All @@ -18,7 +18,7 @@ const SingleBlog = ({ blog }: { blog: Blog }) => {
<div className="p-6 sm:p-8 md:px-6 md:py-8 lg:p-8 xl:px-5 xl:py-8 2xl:p-8">
<h3>
<Link
href="/blog-details"
href={process.env.NEXT_PUBLIC_BLOG_URL}
className="mb-4 block text-xl font-bold text-black hover:text-primary dark:text-white dark:hover:text-primary sm:text-2xl"
>
{title}
Expand Down
4 changes: 2 additions & 2 deletions src/components/Pricing/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const Pricing = () => {
: 'text-primary dark:text-white pointer-events-non border dark:border-slate-400 border-blue-700 bg-blue-50 z-10 dark:bg-gray-dark'
} p-2 cursor-pointer text-sm font-semibold text-center rounded-md `}
>
Yearly
Annual
<svg className='inline-block mx-2' width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
<path d="M3 2v4.586l7 7L14.586 9l-7-7H3zM2 2a1 1 0 0 1 1-1h4.586a1 1 0 0 1 .707.293l7 7a1 1 0 0 1 0 1.414l-4.586 4.586a1 1 0 0 1-1.414 0l-7-7A1 1 0 0 1 2 6.586V2z" />
<path d="M5.5 5a.5.5 0 1 1 0-1 .5.5 0 0 1 0 1zm0 1a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3zM1 7.086a1 1 0 0 0 .293.707L8.75 15.25l-.043.043a1 1 0 0 1-1.414 0l-7-7A1 1 0 0 1 0 7.586V3a1 1 0 0 1 1-1v5.086z" />
Expand Down Expand Up @@ -92,7 +92,7 @@ const Pricing = () => {
<OfferList text="during your subscription period" status="active" />
</PricingBox>
<PricingBox
packageName="custom plan"
packageName="Custom Plan"
price={' ? '}
duration={'mo'}
subtitle="Customize your plan: contact sales for details."
Expand Down
Loading