blob: 02379151845dd5b65d4d327dd30af72e768d407f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
|
import React from "react";
import clsx from "clsx";
import Link from "@docusaurus/Link";
import useDocusaurusContext from "@docusaurus/useDocusaurusContext";
import Layout from "@theme/Layout";
import HomepageFeatures from "@site/src/components/HomepageFeatures";
import CodeBlock from "@theme/CodeBlock";
import styles from "./index.module.css";
import Frame from "../components/Frame";
import Button from "../components/Button";
import CodeFrame from "../components/CodeFrame";
import Dialog from "../components/Dialog";
import Modal from "../components/Modal";
import Disclaimer from "../components/Disclaimer";
const dynC = (className: string, color: string) =>
`dark:${className}-dark${color} ${className}-light${color}`;
function HomepageHeader() {
const { siteConfig } = useDocusaurusContext();
return (
<header className={`${dynC("text", "text")}`}>
<div className="px-8 my-24">
<div className="mb-10">
<div className="">
<h1 className="text-center tracking-supatight leading-relaxed lg:text-7xl md:text-6xl sm:text-5xl text-3xl">
A language that triggers
<br />
<span className="dark:text-darkprimary text-lightsecondary underline decoration-wavy underline-offset-8">
flow state.
</span>
</h1>
</div>
</div>
</div>
<div className="mx-auto mb-4 lg:w-2/3">
<Frame rainbow>
<p className="text-center md:text-2xl sm:text-xl text-lg justify-normal my-10 mx-auto md:w-3/4">
<strong>
NeoHaskell is a dialect of Haskell that is focused on
newcomer-friendliness and productivity.
</strong>
</p>
<p className="text-center md:text-2xl sm:text-xl text-lg justify-normal my-10 mx-auto md:w-3/4">
It is designed to be easy to learn and use, while also being
powerful enough to release your app with minimum effort and maximum
confidence.
</p>
</Frame>
</div>
<VideoPlayer />
<div className="relative text-center mx-auto mt-20 mb-10">
<Link to="/docs/intro">
<Button color="yellow" rounded="full" size="lg">
<h2 className="mx-4 my-2 sm:text-2xl text-xl">Read the Dogma</h2>
</Button>
</Link>
</div>
</header>
);
}
function VideoPlayer({ enabled }: { enabled?: boolean }) {
return enabled ? (
<div className="mx-auto mt-24 width-full max-w-6xl">
<div className="relative overflow-hidden h-0 pb-16-9">
<iframe
className="absolute top-0 left-0 w-full h-full max-w-full"
src="https://www.youtube.com/embed/VM-2OVNt-eQ?si=A7JKcVobgEpi1fvt"
title="YouTube video player"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowFullScreen
/>
</div>
</div>
) : (
<></>
);
}
export default function Home(): JSX.Element {
const { siteConfig } = useDocusaurusContext();
return (
<Layout description={`${siteConfig.tagline}`}>
<div className="container">
<Disclaimer />
<HomepageHeader />
<main className="pt-32">
<HomepageFeatures />
<div className="relative">
<img
className="absolute sm:h-36 h-24 top-0 -z-10"
src="img/Star1.svg"
/>
<img
className="absolute sm:h-36 h-24 bottom-0 right-0 -z-10 "
src="img/Star2.svg"
/>
<div className="lg:mx-32 mx-0 mb-32">
<Frame>
<div className="lg:p-16 p-0 flex flex-col gap-8">
<h2 className="text-center md:text-4xl text-2xl">
A Community for People Like You
</h2>
<div className="flex flex-col gap-8 text-lg">
<p>
NeoHaskell is a community of people who are passionate
about delivering software in an efficient and enjoyable
way. We believe that programming should be fun, and that
the best way to learn is to build things.
</p>
<p>
Therefore, NeoHaskell is a work in progress project. We
are aiming to build a language that is delightful to learn
and use,{" "}
<b>
strongly focusing on optimizing developers' happiness
</b>
.
</p>
<p>
Whether you're a freshman or a senior, a hacker or a
rocket scientist, you'll find a place in our community.
</p>
<p>
Together, we are building the best language for the next
generation of developers. Join us!
</p>
</div>
<div className="mx-auto">
<Button
className="mx-auto"
color="violet"
rounded="full"
size="lg"
>
<a
href="https://discord.com/invite/wDj3UYzec8"
target="_blank"
>
<h3>JOIN THE DISCORD SERVER!</h3>
</a>
</Button>
</div>
</div>
</Frame>
</div>
</div>
</main>
</div>
</Layout>
);
}
|