Skip to content

Commit c660820

Browse files
committed
make stars be a part of the stack too
1 parent 765aa0c commit c660820

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

app/routes/_marketing+/index.tsx

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { V2_MetaFunction } from '@remix-run/node'
2-
import { logos, kodyRocket } from './logos/logos.ts'
2+
import { logos, kodyRocket, stars } from './logos/logos.ts'
33

44
export const meta: V2_MetaFunction = () => [{ title: 'Epic Notes' }]
55

@@ -10,11 +10,7 @@ export default function Index() {
1010
<div className="mx-auto max-w-7xl sm:px-6 lg:px-8">
1111
<div className="relative shadow-xl sm:overflow-hidden sm:rounded-2xl">
1212
<div className="absolute inset-0">
13-
<img
14-
className="h-full w-full object-cover"
15-
src="https://user-images.githubusercontent.com/1500684/236281980-66d33a85-f5fc-4094-ab73-e8994acc27a3.jpg"
16-
alt=""
17-
/>
13+
<img className="h-full w-full object-cover" src={stars} alt="" />
1814
<div className="absolute inset-0 bg-[color:rgba(30,23,38,0.5)] mix-blend-multiply" />
1915
</div>
2016
<div className="lg:pt-18 relative px-4 pb-8 pt-8 sm:px-6 sm:pb-14 sm:pt-16 lg:px-8 lg:pb-20">

app/routes/_marketing+/logos/logos.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ import typescript from './typescript.svg'
1717
import prettier from './prettier.svg'
1818
import eslint from './eslint.svg'
1919

20+
export { default as stars } from './stars.jpg'
21+
2022
export { default as kodyRocket } from './kody-rocket.png'
2123

2224
export const logos = [
382 KB
Loading

0 commit comments

Comments
 (0)