-
-
Notifications
You must be signed in to change notification settings - Fork 642
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
111 additions
and
84 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
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,57 +1,71 @@ | ||
import React from "react"; | ||
import { LazyLoadImage } from 'react-lazy-load-image-component'; | ||
import "./index.css"; | ||
import "./App.css"; | ||
import Navbar from "../subsections/landingpage/Navbar"; | ||
import Footer from "../components/Footer"; | ||
// import React from "react"; | ||
// import { LazyLoadImage } from 'react-lazy-load-image-component'; | ||
// import "./index.css"; | ||
// import "./App.css"; | ||
// import Navbar from "../subsections/landingpage/Navbar"; | ||
// import Footer from "../components/Footer"; | ||
|
||
function Home() { | ||
return ( | ||
<> | ||
<div className="bg-white text-black"> | ||
<Navbar /> | ||
<div className="container mx-auto py-10"> | ||
<div className="text-center"> | ||
<h1 className="text-5xl md:text-5xl font-bold mb-8 text-black">Illuminate Generative AI</h1> | ||
</div> | ||
<p className="mx-auto px-8 md:px-32 text-lg text-gray-600 leading-relaxed text-center"> | ||
Our mission is to teach global audiences about prompt engineering and generative AI. | ||
</p> | ||
<div className="bg-white shadow-lg rounded-lg p-8 my-10 text-black"> | ||
<h2 className="text-2xl md:text-4xl font-semibold mb-6 ">Our Team</h2> | ||
<div className="grid grid-cols-1 md:grid-cols-3 gap-10"> | ||
<div className="text-center"> | ||
<LazyLoadImage src={require("@site/static/team/sander.webp").default} alt="CTO" className="mx-auto rounded-full border-4 border-gray-200 shadow-lg" style={{ width: "200px", height: "200px" }}/> | ||
<h2 className="text-lg md:text-xl font-semibold mt-4"><a href="https://trigaten.github.io">Sander Schulhoff</a></h2> | ||
<p className="text-gray-500 mt-2">CEO</p> | ||
</div> | ||
<div className="text-center"> | ||
<LazyLoadImage src={require("@site/static/team/fady.webp").default} alt="COO" className="mx-auto rounded-full border-4 border-gray-200 shadow-lg" style={{ width: "200px", height: "200px" }}/> | ||
<h2 className="text-lg md:text-xl font-semibold mt-4"><a href="https://www.linkedin.com/in/fadyyanni/">Fady Yanni</a></h2> | ||
<p className="text-gray-500 mt-2">COO</p> | ||
</div> | ||
</div> | ||
</div> | ||
<div className="bg-white shadow-lg rounded-lg p-8 my-10"> | ||
<h2 className="text-2xl md:text-4xl font-semibold mb-6">Our Research</h2> | ||
<p className="text-lg text-gray-600 leading-relaxed"> | ||
We conduct large-scale research on the topic, such as the recent large language model security challenge, <a href="https://www.aicrowd.com/challenges/hackaprompt-2023">HackAPrompt</a>. | ||
</p> | ||
</div> | ||
<div className="bg-white shadow-lg rounded-lg p-8 my-10"> | ||
<h2 className="text-2xl md:text-4xl font-semibold mb-6">Open Source Software</h2> | ||
<p className="text-lg text-gray-600 leading-relaxed"> | ||
We maintain multiple Open Source projects in the large language model space. | ||
Our best known project is <a href="https://learnprompting.org/docs/intro">Learn Prompting</a>, the most robust, beginner friendly guide | ||
on prompt engineering. | ||
</p> | ||
</div> | ||
// function Home() { | ||
// return ( | ||
// <> | ||
// <div className="bg-white text-black"> | ||
// <Navbar /> | ||
// <div className="container mx-auto py-10"> | ||
// <div className="text-center"> | ||
// <h1 className="text-5xl md:text-5xl font-bold mb-8 text-black">Illuminate Generative AI</h1> | ||
// </div> | ||
// <p className="mx-auto px-8 md:px-32 text-lg text-gray-600 leading-relaxed text-center"> | ||
// Our mission is to teach global audiences about prompt engineering and generative AI. | ||
// </p> | ||
// <div className="bg-white shadow-lg rounded-lg p-8 my-10 text-black"> | ||
// <h2 className="text-2xl md:text-4xl font-semibold mb-6 ">Our Team</h2> | ||
// <div className="grid grid-cols-1 md:grid-cols-3 gap-10"> | ||
// <div className="text-center"> | ||
// <LazyLoadImage src={require("@site/static/team/sander.webp").default} alt="CTO" className="mx-auto rounded-full border-4 border-gray-200 shadow-lg" style={{ width: "200px", height: "200px" }}/> | ||
// <h2 className="text-lg md:text-xl font-semibold mt-4"><a href="https://trigaten.github.io">Sander Schulhoff</a></h2> | ||
// <p className="text-gray-500 mt-2">CEO</p> | ||
// </div> | ||
// <div className="text-center"> | ||
// <LazyLoadImage src={require("@site/static/team/fady.webp").default} alt="COO" className="mx-auto rounded-full border-4 border-gray-200 shadow-lg" style={{ width: "200px", height: "200px" }}/> | ||
// <h2 className="text-lg md:text-xl font-semibold mt-4"><a href="https://www.linkedin.com/in/fadyyanni/">Fady Yanni</a></h2> | ||
// <p className="text-gray-500 mt-2">COO</p> | ||
// </div> | ||
// </div> | ||
// </div> | ||
// <div className="bg-white shadow-lg rounded-lg p-8 my-10"> | ||
// <h2 className="text-2xl md:text-4xl font-semibold mb-6">Our Research</h2> | ||
// <p className="text-lg text-gray-600 leading-relaxed"> | ||
// We conduct large-scale research on the topic, such as the recent large language model security challenge, <a href="https://www.aicrowd.com/challenges/hackaprompt-2023">HackAPrompt</a>. | ||
// </p> | ||
// </div> | ||
// <div className="bg-white shadow-lg rounded-lg p-8 my-10"> | ||
// <h2 className="text-2xl md:text-4xl font-semibold mb-6">Open Source Software</h2> | ||
// <p className="text-lg text-gray-600 leading-relaxed"> | ||
// We maintain multiple Open Source projects in the large language model space. | ||
// Our best known project is <a href="https://learnprompting.org/docs/intro">Learn Prompting</a>, the most robust, beginner friendly guide | ||
// on prompt engineering. | ||
// </p> | ||
// </div> | ||
|
||
</div> | ||
<Footer /> | ||
</div> | ||
</> | ||
); | ||
} | ||
// </div> | ||
// <Footer /> | ||
// </div> | ||
// </> | ||
// ); | ||
// } | ||
|
||
export default Home; | ||
// export default Home; | ||
|
||
import React, { useEffect } from 'react'; | ||
import Link from '@docusaurus/Link'; | ||
|
||
export default function Home() { | ||
let url = "https://learnprompting.org" | ||
useEffect(() => { | ||
window.location.href = url; | ||
}, []); | ||
|
||
return ( | ||
<p>Redirecting to link..., please click <Link href={url} target="_self">here</Link> if not redirected</p> | ||
); | ||
}; |
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,32 +1,45 @@ | ||
import React from "react"; | ||
import { LazyLoadImage } from 'react-lazy-load-image-component'; | ||
import "framer-motion"; | ||
import "./index.css"; | ||
import "./App.css"; | ||
import Navbar from "../subsections/landingpage/Navbar"; | ||
import Hero from "../subsections/landingpage/Hero"; | ||
import Join from "../subsections/landingpage/Join"; | ||
import FAQ from "../subsections/landingpage/FAQ"; | ||
import Newsletter from "../subsections/landingpage/Newsletter"; | ||
import GetStarted from "../subsections/landingpage/GetStarted"; | ||
import Footer from "../components/Footer"; | ||
import Banner from "../subsections/landingpage/Banner"; | ||
// import React from "react"; | ||
// import { LazyLoadImage } from 'react-lazy-load-image-component'; | ||
// import "framer-motion"; | ||
// import "./index.css"; | ||
// import "./App.css"; | ||
// import Navbar from "../subsections/landingpage/Navbar"; | ||
// import Hero from "../subsections/landingpage/Hero"; | ||
// import Join from "../subsections/landingpage/Join"; | ||
// import FAQ from "../subsections/landingpage/FAQ"; | ||
// import Newsletter from "../subsections/landingpage/Newsletter"; | ||
// import GetStarted from "../subsections/landingpage/GetStarted"; | ||
// import Footer from "../components/Footer"; | ||
// import Banner from "../subsections/landingpage/Banner"; | ||
|
||
function Home() { | ||
return ( | ||
<> | ||
{/*<Banner />*/} | ||
<div className="bg-white"> | ||
<Navbar allowSandwich="true"/> | ||
<Hero /> | ||
<Join /> | ||
<FAQ /> | ||
<Newsletter /> | ||
<GetStarted /> | ||
<Footer /> | ||
</div> | ||
</> | ||
); | ||
} | ||
// function Home() { | ||
// return ( | ||
// <> | ||
// {/*<Banner />*/} | ||
// <div className="bg-white"> | ||
// <Navbar allowSandwich="true"/> | ||
// <Hero /> | ||
// <Join /> | ||
// <FAQ /> | ||
// <Newsletter /> | ||
// <GetStarted /> | ||
// <Footer /> | ||
// </div> | ||
// </> | ||
// ); | ||
// } | ||
|
||
export default Home; | ||
// export default Home; | ||
import React, { useEffect } from 'react'; | ||
import Link from '@docusaurus/Link'; | ||
|
||
export default function Home() { | ||
let url = "https://learnprompting.org" | ||
useEffect(() => { | ||
window.location.href = url; | ||
}, []); | ||
|
||
return ( | ||
<p>Redirecting to link..., please click <Link href={url} target="_self">here</Link> if not redirected</p> | ||
); | ||
}; |
Binary file not shown.
Binary file not shown.
f3e59c4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
learn-prompting – ./
learn-prompting-git-main-trigaten.vercel.app
learn-prompting.vercel.app
learn-prompting-trigaten.vercel.app