Spaces:
Sleeping
Sleeping
bradduy commited on
Commit ·
2c27336
1
Parent(s): be17a2d
add new line esline
Browse files- src/app/(auth)/layout.tsx +3 -1
- src/app/(auth)/sign-in/page.tsx +1 -2
- src/app/page.tsx +2 -1
- src/app/robots.ts +1 -0
- src/app/sitemap.ts +1 -0
- src/components/atoms/index.ts +2 -1
- src/components/homepage/AnnouncementBanner.tsx +1 -0
- src/components/homepage/CustomizationSection.tsx +1 -0
- src/components/homepage/FeatureSection.tsx +1 -0
src/app/(auth)/layout.tsx
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
|
|
|
|
|
| 1 |
import { ClerkProvider } from '@clerk/nextjs';
|
| 2 |
import { setRequestLocale } from 'next-intl/server';
|
| 3 |
-
|
| 4 |
export default async function AuthLayout(props: {
|
| 5 |
children: React.ReactNode;
|
| 6 |
params: Promise<{ locale: string }>;
|
|
|
|
| 1 |
+
/* eslint import/newline-after-import: "off" */
|
| 2 |
+
|
| 3 |
import { ClerkProvider } from '@clerk/nextjs';
|
| 4 |
import { setRequestLocale } from 'next-intl/server';
|
| 5 |
+
|
| 6 |
export default async function AuthLayout(props: {
|
| 7 |
children: React.ReactNode;
|
| 8 |
params: Promise<{ locale: string }>;
|
src/app/(auth)/sign-in/page.tsx
CHANGED
|
@@ -1,6 +1,5 @@
|
|
| 1 |
-
import { SignIn } from '@clerk/nextjs';
|
| 2 |
-
|
| 3 |
/* eslint import/newline-after-import: "off" */
|
|
|
|
| 4 |
|
| 5 |
type ISignInPageProps = {
|
| 6 |
params: Promise<{ locale: string }>;
|
|
|
|
|
|
|
|
|
|
| 1 |
/* eslint import/newline-after-import: "off" */
|
| 2 |
+
import { SignIn } from '@clerk/nextjs';
|
| 3 |
|
| 4 |
type ISignInPageProps = {
|
| 5 |
params: Promise<{ locale: string }>;
|
src/app/page.tsx
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
|
|
| 1 |
import { Badge, Button } from '@/components/atoms';
|
| 2 |
import { ChevronDown, Download } from 'lucide-react';
|
| 3 |
import Image from 'next/image';
|
| 4 |
-
|
| 5 |
export default function Home() {
|
| 6 |
return (
|
| 7 |
<main className="flex min-h-screen flex-col">
|
|
|
|
| 1 |
+
/* eslint import/newline-after-import: "off" */
|
| 2 |
import { Badge, Button } from '@/components/atoms';
|
| 3 |
import { ChevronDown, Download } from 'lucide-react';
|
| 4 |
import Image from 'next/image';
|
| 5 |
+
|
| 6 |
export default function Home() {
|
| 7 |
return (
|
| 8 |
<main className="flex min-h-screen flex-col">
|
src/app/robots.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
import type { MetadataRoute } from 'next';
|
| 2 |
import { getBaseUrl } from '@/utils/Helpers';
|
| 3 |
|
|
|
|
| 1 |
+
/* eslint import/newline-after-import: "off" */
|
| 2 |
import type { MetadataRoute } from 'next';
|
| 3 |
import { getBaseUrl } from '@/utils/Helpers';
|
| 4 |
|
src/app/sitemap.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
import type { MetadataRoute } from 'next';
|
| 2 |
import { getBaseUrl } from '@/utils/Helpers';
|
| 3 |
|
|
|
|
| 1 |
+
/* eslint import/newline-after-import: "off" */
|
| 2 |
import type { MetadataRoute } from 'next';
|
| 3 |
import { getBaseUrl } from '@/utils/Helpers';
|
| 4 |
|
src/components/atoms/index.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
export { Badge } from './Badge';
|
| 2 |
export { Button } from './Button';
|
| 3 |
-
export { Input } from './Input';
|
| 4 |
export { Card } from './Card';
|
|
|
|
|
|
|
|
|
| 1 |
export { Badge } from './Badge';
|
| 2 |
export { Button } from './Button';
|
|
|
|
| 3 |
export { Card } from './Card';
|
| 4 |
+
export { Input } from './Input';
|
| 5 |
+
|
src/components/homepage/AnnouncementBanner.tsx
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
import { Badge, Button } from '@/components/atoms';
|
| 2 |
import { ChevronDown, Download } from 'lucide-react';
|
| 3 |
import Image from 'next/image';
|
|
|
|
| 1 |
+
/* eslint import/newline-after-import: "off" */
|
| 2 |
import { Badge, Button } from '@/components/atoms';
|
| 3 |
import { ChevronDown, Download } from 'lucide-react';
|
| 4 |
import Image from 'next/image';
|
src/components/homepage/CustomizationSection.tsx
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
import { Badge, Card } from '@/components/atoms';
|
| 2 |
import Image from 'next/image';
|
| 3 |
|
|
|
|
| 1 |
+
/* eslint import/newline-after-import: "off" */
|
| 2 |
import { Badge, Card } from '@/components/atoms';
|
| 3 |
import Image from 'next/image';
|
| 4 |
|
src/components/homepage/FeatureSection.tsx
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
|
|
| 1 |
import { Badge } from '@/components/atoms';
|
| 2 |
import { Cloud, FileText, Grid, MessageCircle, Server } from 'lucide-react';
|
| 3 |
import Image from 'next/image';
|
|
|
|
| 1 |
+
/* eslint import/newline-after-import: "off" */
|
| 2 |
import { Badge } from '@/components/atoms';
|
| 3 |
import { Cloud, FileText, Grid, MessageCircle, Server } from 'lucide-react';
|
| 4 |
import Image from 'next/image';
|