Skip to content

Commit

Permalink
feat: styling on index.tsx without tailwind (#388)
Browse files Browse the repository at this point in the history
* feat: non-tw index.tsx with styling

* chore: add changeset

* feat: remove index.module.css in tailwind installer

* fix: remove unused import
  • Loading branch information
c-ehrlich committed Sep 2, 2022
1 parent 2bc89a9 commit 86d053c
Show file tree
Hide file tree
Showing 8 changed files with 340 additions and 79 deletions.
5 changes: 5 additions & 0 deletions .changeset/five-snails-roll.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"create-t3-app": minor
---

feat: non-tw index.tsx with styling
1 change: 1 addition & 0 deletions cli/src/helpers/installPackages.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,6 @@ export const installPackages = async (options: InstallPackagesOptions) => {
);
}
}

logger.info("");
};
3 changes: 3 additions & 0 deletions cli/src/installers/tailwind.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,12 @@ export const tailwindInstaller: Installer = async ({
const cssSrc = path.join(twAssetDir, "globals.css");
const cssDest = path.join(projectDir, "src/styles/globals.css");

const indexModuleCss = path.join(projectDir, "src/pages/index.module.css");

await Promise.all([
fs.copy(twCfgSrc, twCfgDest),
fs.copy(postcssCfgSrc, postcssCfgDest),
fs.copy(cssSrc, cssDest),
fs.unlink(indexModuleCss),
]);
};
196 changes: 196 additions & 0 deletions cli/template/base/src/pages/index.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,196 @@
.containerOuter {
--color-gray-500: rgba(107, 114, 128, 100%);
--color-gray-600: rgba(75, 85, 99, 100%);
--color-gray-700: rgba(55, 65, 81, 100%);
--color-purple-300: rgba(216, 180, 254, 100%);
--color-blue-500: rgba(59, 130, 246, 100%);
--color-violet-500: rgba(139, 92, 246, 100%);
--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
0 8px 10px -6px rgb(0 0 0 / 0.1);

display: flex;
align-items: center;
justify-content: center;
width: 100vw;
min-height: 100vh;
}

.containerInner {
width: 100%;
min-height: 100vh;
padding: 16px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
"Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
"Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

@media (min-width: 640px) {
.containerInner {
max-width: 640px;
}
}

@media (min-width: 768px) {
.containerInner {
max-width: 768px;
}
}

@media (min-width: 1024px) {
.containerInner {
max-width: 1024px;
}
}

@media (min-width: 1280px) {
.containerInner {
max-width: 1280px;
}
}

@media (min-width: 1536px) {
.containerInner {
max-width: 1536px;
}
}

.title {
margin: 0;
font-size: 3rem;
font-weight: 800;
line-height: 1.5;
color: var(--color-gray-700);
}

@media (min-width: 768px) {
.title {
font-size: 5rem;
}
}

.titlePink {
color: var(--color-purple-300);
}

.subtitle {
margin: 0;
color: var(--color-gray-700);
font-weight: 400;
font-size: 1.5rem;
line-height: 2rem;
}

.cardGrid {
display: grid;
gap: 0.75rem;
padding-top: 0.75rem;
margin-top: 0.75rem;
text-align: center;
}

@media (min-width: 768px) {
.cardGrid {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

@media (min-width: 1024px) {
.cardGrid {
width: calc(200% / 3);
}
}

.card {
display: flex;
flex-direction: column;
justify-content: center;
padding: 1.5rem;
transition-duration: 500ms;
border: 2px solid var(--color-gray-500);
border-radius: 0.25rem;
box-shadow: var(--tw-shadow);
}

.card:hover {
transform: scale(1.05);
}

@media (prefers-reduced-motion) {
.card:hover {
transform: none;
}
}

.cardTitle {
margin: 0;
font-size: 1.125rem;
line-height: 1.75rem;
font-weight: 400;
color: var(--color-gray-500);
}

.cardDescription {
margin: 0;
font-size: 0.875rem;
line-height: 1.25rem;
color: var(--color-gray-600);
}

.cardDocumentation {
margin-top: 0.75rem;
font-size: 0.875rem;
line-height: 1.25rem;
text-decoration-line: underline;
-webkit-text-decoration-line: underline;
text-decoration-style: dotted;
-webkit-text-decoration-style: dotted;
text-underline-offset: 2px;
color: var(--color-violet-500);
}

.helloFrom {
padding-top: 1.5rem;
font-size: 1.5rem;
line-height: 2rem;
color: var(--color-blue-500);
display: flex;
align-items: center;
justify-content: center;
width: 100%;
}

.helloFrom p {
margin: 0;
}

.authShowcase {
margin: 2rem;
display: flex;
flex-direction: column;
align-items: center;
gap: 16px;
}

.loginInfo {
color: var(--color-blue-500);
font-size: 1.5rem;
line-height: 2rem;
}

.signInButton {
padding: 0.5rem 1rem;
border: 1px solid black;
background-color: rgba(245, 243, 255, 100%);
font-size: 1.25rem;
line-height: 1.75rem;
border-radius: 0.375rem;
box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.signInButton:hover {
background-color: rgba(237, 233, 254, 100%);
}
44 changes: 26 additions & 18 deletions cli/template/base/src/pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
import type { NextPage } from "next";
import Head from "next/head";

interface TechnologyCardProps {
name: string;
description: string;
documentation: string;
}
import styles from "./index.module.css";

const Home: NextPage = () => {
return (
Expand All @@ -15,14 +10,14 @@ const Home: NextPage = () => {
<meta name="description" content="Generated by create-t3-app" />
<link rel="icon" href="/favicon.ico" />
</Head>
<div>
<h1>
Create <span>T3</span> App
</h1>
<div className={styles.containerOuter}>
<div className={styles.containerInner}>
<h1 className={styles.title}>
Create <span className={styles.titlePink}>T3</span> App
</h1>

<div>
<h3>This stack uses:</h3>
<ul>
<h3 className={styles.subtitle}>This stack uses:</h3>
<div className={styles.cardGrid}>
<TechnologyCard
name="NextJS"
description="The React framework for production"
Expand Down Expand Up @@ -53,7 +48,7 @@ const Home: NextPage = () => {
description="Build data-driven JavaScript & TypeScript apps in less time"
documentation="https://www.prisma.io/docs/"
/>
</ul>
</div>
</div>
</div>
</>
Expand All @@ -62,16 +57,29 @@ const Home: NextPage = () => {

export default Home;

type TechnologyCardProps = {
name: string;
description: string;
documentation: string;
};

const TechnologyCard = ({
name,
description,
documentation,
}: TechnologyCardProps) => {
return (
<li>
<a href={documentation} target="_blank" rel="noreferrer">
<strong>{name}</strong> - {description}
<section className={styles.card}>
<h2 className={styles.cardTitle}>{name}</h2>
<p className={styles.cardDescription}>{description}</p>
<a
className={styles.cardDocumentation}
href={documentation}
target="_blank"
rel="noreferrer"
>
Documentation
</a>
</li>
</section>
);
};
27 changes: 27 additions & 0 deletions cli/template/page-studs/index/with-auth-trpc-tw.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,33 @@ const Home: NextPage = () => {
);
};

const AuthShowcase: React.FC = () => {
const { data: secretMessage, isLoading } = trpc.useQuery([
"auth.getSecretMessage",
]);

const { data: sessionData } = useSession();

return (
<div className="flex flex-col items-center justify-center gap-2">
{sessionData && (
<p className="text-2xl text-blue-500">
Logged in as {sessionData?.user?.name}
</p>
)}
{secretMessage && (
<p className="text-2xl text-blue-500">{secretMessage}</p>
)}
<button
className="px-4 py-2 border border-black text-xl rounded-md bg-violet-50 hover:bg-violet-100 shadow-lg'"
onClick={sessionData ? () => signOut() : () => signIn()}
>
{sessionData ? "Sign out" : "Sign in"}
</button>
</div>
);
};

const TechnologyCard = ({
name,
description,
Expand Down

1 comment on commit 86d053c

@vercel
Copy link

@vercel vercel bot commented on 86d053c Sep 2, 2022

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:

create-t3-app – ./

create-t3-app-git-main-t3-oss.vercel.app
create-t3-app-t3-oss.vercel.app
create-t3-app-nu.vercel.app

Please sign in to comment.