Skip to content

Commit 2d3daee

Browse files
committed
Updated
0 parents  commit 2d3daee

19 files changed

+7250
-0
lines changed

.eslintrc.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"extends": "next/core-web-vitals"
3+
}

.gitignore

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
11+
# next.js
12+
/.next/
13+
/out/
14+
15+
# production
16+
/build
17+
18+
# misc
19+
.DS_Store
20+
*.pem
21+
22+
# debug
23+
npm-debug.log*
24+
yarn-debug.log*
25+
yarn-error.log*
26+
27+
# local env files
28+
.env*.local
29+
30+
# vercel
31+
.vercel
32+
33+
# typescript
34+
*.tsbuildinfo
35+
next-env.d.ts

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
This is a [Next.js](https://nextjs.org/) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).
2+
3+
## Getting Started
4+
5+
First, run the development server:
6+
7+
```bash
8+
npm run dev
9+
# or
10+
yarn dev
11+
# or
12+
pnpm dev
13+
```
14+
15+
Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.
16+
17+
You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file.
18+
19+
This project uses [`next/font`](https://nextjs.org/docs/basic-features/font-optimization) to automatically optimize and load Inter, a custom Google Font.
20+
21+
## Learn More
22+
23+
To learn more about Next.js, take a look at the following resources:
24+
25+
- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
26+
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.
27+
28+
You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js/) - your feedback and contributions are welcome!
29+
30+
## Deploy on Vercel
31+
32+
The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.
33+
34+
Check out our [Next.js deployment documentation](https://nextjs.org/docs/deployment) for more details.

app/favicon.ico

25.3 KB
Binary file not shown.

app/globals.css

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@tailwind base;
2+
@tailwind components;
3+
@tailwind utilities;

app/layout.js

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import './globals.css';
2+
import { Syne } from 'next/font/google';
3+
4+
const syne = Syne({ subsets: ['latin'] });
5+
6+
export const metadata = {
7+
title: '9D8 Development Studio | Bridger Tower and Cameron Youngblood',
8+
description:
9+
'A development studio in Utah that specializes in web and software development. Using Next.js, Svelte, React, Ruby on Rails, PHP, and Laravel.',
10+
openGraph: {
11+
type: 'website',
12+
locale: 'en_US',
13+
url: 'https://9d8.dev',
14+
title: '9D8 Development Studio | Bridger Tower and Cameron Youngblood',
15+
description:
16+
'A development studio in Utah that specializes in web and software development. Using Next.js, Svelte, React, Ruby on Rails, PHP, and Laravel.',
17+
site_name: '9D8 Development Studio',
18+
images: [
19+
{
20+
url: './og.jpg',
21+
width: 480,
22+
height: 480,
23+
alt: '9D8 Development Studio OG Image'
24+
}
25+
]
26+
}
27+
};
28+
29+
export default function RootLayout({ children }) {
30+
return (
31+
<html className="bg-[#222] text-white" lang="en">
32+
<body className={syne.className}>{children}</body>
33+
</html>
34+
);
35+
}

app/page.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import Hero from '@/components/Hero';
2+
3+
export default function Home() {
4+
return (
5+
<main>
6+
<Hero />
7+
</main>
8+
);
9+
}

components/Hero.js

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
import Section from './parts/Section';
2+
3+
const Hero = () => {
4+
return (
5+
<div className="h-screen w-screen relative">
6+
<Section>
7+
<div className="hero__content">
8+
<h1 className="hero__title">9d8 Development Studio</h1>
9+
<h3 className="hero__description">
10+
We are a development studio that specializes in web and software development. Using
11+
Next.js, Svelte, React, Ruby on Rails, PHP, and Laravel.
12+
</h3>
13+
</div>
14+
</Section>
15+
</div>
16+
);
17+
};
18+
19+
export default Hero;

components/parts/Section.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
const Section = ({ children }) => <section className="p-6 max-w-screen-lg">{children}</section>;
2+
3+
export default Section;

jsconfig.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"compilerOptions": {
3+
"paths": {
4+
"@/*": ["./*"]
5+
}
6+
}
7+
}

0 commit comments

Comments
 (0)