This repository has been archived by the owner on Oct 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #328 from janhq/feat/update-homepage
feat: update homepage
- Loading branch information
Showing
23 changed files
with
377 additions
and
56 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
import React from 'react' | ||
import { BsArrowRight } from 'react-icons/bs' | ||
|
||
const endpoints = [ | ||
{ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
import ThemeImage from '@/components/ThemeImage' | ||
import React from 'react' | ||
|
||
const Customizable = () => { | ||
return ( | ||
<div className="pt-24 pb-20 nextra-wrap-container"> | ||
<div className="w-full text-center"> | ||
<h1 className="text-5xl lg:text-7xl !font-normal leading-tight lg:leading-tight mt-2 font-serif"> | ||
Highly Customizable | ||
</h1> | ||
<div className="lg:w-1/2 mx-auto"> | ||
<p className="leading-relaxed mt-2 text-black/60 dark:text-white/60"> | ||
Customize Jan to match your needs and preferences. | ||
</p> | ||
</div> | ||
</div> | ||
|
||
<div className="flex gap-4 flex-col lg:flex-row mt-10 "> | ||
<div className="w-full lg:w-1/2 border border-neutral-200 rounded-2xl dark:border-neutral-800"> | ||
<div className="p-6"> | ||
<div className="flex flex-col lg:flex-row gap-2 lg:items-center"> | ||
<h1 className="text-2xl font-medium">Assistants & Memory</h1> | ||
<div className="flex"> | ||
<div className="font-medium text-sm bg-blue-100 rounded-lg px-2 py-1 text-blue-700"> | ||
Coming Soon | ||
</div> | ||
</div> | ||
</div> | ||
<p className="text-lg mt-4 text-black/60 dark:text-white/60"> | ||
Create personalized AI assistants that remember your conversations | ||
and execute specific tasks across your systems. | ||
</p> | ||
</div> | ||
|
||
<div className="relative p-3"> | ||
<ThemeImage | ||
alt="App Screenshot Feature" | ||
width={800} | ||
height={800} | ||
className="w-full h-full object-cover object-center" | ||
priority | ||
source={{ | ||
light: '/assets/images/homepage/assistant-light.png', | ||
dark: '/assets/images/homepage/assistant-dark.png', | ||
}} | ||
/> | ||
</div> | ||
</div> | ||
<div className="w-full lg:w-1/2 border border-neutral-200 rounded-2xl dark:border-neutral-800"> | ||
<div className="p-6"> | ||
<h1 className="text-2xl font-medium">Extensions</h1> | ||
<p className="text-lg mt-4 text-black/60 dark:text-white/60"> | ||
Customize Jan with Extensions, that range from Cloud AI | ||
connectors, tools, data connectors. | ||
</p> | ||
</div> | ||
|
||
<div className="relative p-3"> | ||
<ThemeImage | ||
alt="App Screenshot Feature" | ||
width={800} | ||
height={800} | ||
className="w-full h-full object-cover object-center" | ||
priority | ||
source={{ | ||
light: '/assets/images/homepage/extension-light.png', | ||
dark: '/assets/images/homepage/extension-dark.png', | ||
}} | ||
/> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default Customizable |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.