Skip to content

Commit

Permalink
feat: new logo
Browse files Browse the repository at this point in the history
  • Loading branch information
trigaten committed Nov 30, 2023
1 parent 3640efc commit f3e59c4
Show file tree
Hide file tree
Showing 6 changed files with 111 additions and 84 deletions.
Binary file added docs/assets/astronaut_old.webp
Binary file not shown.
Binary file not shown.
122 changes: 68 additions & 54 deletions src/pages/about.js
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>
);
};
73 changes: 43 additions & 30 deletions src/pages/index.js
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 removed static/img/favicon.ico
Binary file not shown.
Binary file modified static/img/simple_ai.webp
Binary file not shown.

1 comment on commit f3e59c4

@vercel
Copy link

@vercel vercel bot commented on f3e59c4 Nov 30, 2023

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

Please sign in to comment.