Skip to content

Commit

Permalink
Merge branch 'next' into next-auth-stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
juliusmarminge committed Nov 4, 2022
2 parents 979c542 + 7eb5e87 commit 9fcb40f
Show file tree
Hide file tree
Showing 7 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions cli/template/base/src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,11 @@ type TechnologyCardProps = {
documentation: string;
};

const TechnologyCard = ({
const TechnologyCard: React.FC<TechnologyCardProps> = ({
name,
description,
documentation,
}: TechnologyCardProps) => {
}) => {
return (
<section className={styles.card}>
<h2 className={styles.cardTitle}>{name}</h2>
Expand Down
4 changes: 2 additions & 2 deletions cli/template/page-studs/index/with-auth-trpc-tw.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,11 +97,11 @@ type TechnologyCardProps = {
documentation: string;
};

const TechnologyCard = ({
const TechnologyCard: React.FC<TechnologyCardProps> = ({
name,
description,
documentation,
}: TechnologyCardProps) => {
}) => {
return (
<section className="flex flex-col justify-center rounded border-2 border-gray-500 p-6 shadow-xl duration-500 motion-safe:hover:scale-105">
<h2 className="text-lg text-gray-700">{name}</h2>
Expand Down
4 changes: 2 additions & 2 deletions cli/template/page-studs/index/with-auth-trpc.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,11 +96,11 @@ type TechnologyCardProps = {
documentation: string;
};

const TechnologyCard = ({
const TechnologyCard: React.FC<TechnologyCardProps> = ({
name,
description,
documentation,
}: TechnologyCardProps) => {
}) => {
return (
<section className={styles.card}>
<h2 className={styles.cardTitle}>{name}</h2>
Expand Down
4 changes: 2 additions & 2 deletions cli/template/page-studs/index/with-trpc-tw.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ type TechnologyCardProps = {
documentation: string;
};

const TechnologyCard = ({
const TechnologyCard: React.FC<TechnologyCardProps> = ({
name,
description,
documentation,
}: TechnologyCardProps) => {
}) => {
return (
<section className="flex flex-col justify-center rounded border-2 border-gray-500 p-6 shadow-xl duration-500 motion-safe:hover:scale-105">
<h2 className="text-lg text-gray-700">{name}</h2>
Expand Down
4 changes: 2 additions & 2 deletions cli/template/page-studs/index/with-trpc.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ type TechnologyCardProps = {
documentation: string;
};

const TechnologyCard = ({
const TechnologyCard: React.FC<TechnologyCardProps> = ({
name,
description,
documentation,
}: TechnologyCardProps) => {
}) => {
return (
<section className={styles.card}>
<h2 className={styles.cardTitle}>{name}</h2>
Expand Down
4 changes: 2 additions & 2 deletions cli/template/page-studs/index/with-tw.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ type TechnologyCardProps = {
documentation: string;
};

const TechnologyCard = ({
const TechnologyCard: React.FC<TechnologyCardProps> = ({
name,
description,
documentation,
}: TechnologyCardProps) => {
}) => {
return (
<section className="flex flex-col justify-center rounded border-2 border-gray-500 p-6 shadow-xl duration-500 motion-safe:hover:scale-105">
<h2 className="text-lg text-gray-700">{name}</h2>
Expand Down
2 changes: 1 addition & 1 deletion www/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const KNOWN_LANGUAGES = {
} as const;
export const KNOWN_LANGUAGE_CODES = Object.values(KNOWN_LANGUAGES);

export const GITHUB_EDIT_URL = `https://github.com/t3-oss/create-t3-app/tree/main/www`;
export const GITHUB_EDIT_URL = `https://github.com/t3-oss/create-t3-app/tree/next/www`;

export const COMMUNITY_INVITE_URL = `https://t3.gg/discord`;

Expand Down

0 comments on commit 9fcb40f

Please sign in to comment.