File tree 17 files changed +37
-37
lines changed
17 files changed +37
-37
lines changed Load Diff This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 1
- import { Container } from '@/app/( foundation) /components/Container'
2
- import { Logo } from '@/app/( foundation) /components/Logo'
1
+ import { Container } from '@/app/foundation/components/Container'
2
+ import { Logo } from '@/app/foundation/components/Logo'
3
3
import { IconBrandGithub , IconBrandLinkedin } from '@tabler/icons-react'
4
4
5
5
export function Footer ( ) {
File renamed without changes.
Original file line number Diff line number Diff line change 1
- import { BackgroundImage } from '@/app/( foundation) /components/BackgroundImage'
2
- import { Button } from '@/app/( foundation) /components/Button'
3
- import { Container } from '@/app/( foundation) /components/Container'
1
+ import { BackgroundImage } from '@/app/foundation/components/BackgroundImage'
2
+ import { Button } from '@/app/foundation/components/Button'
3
+ import { Container } from '@/app/foundation/components/Container'
4
4
5
5
export function Hero ( ) {
6
6
return (
Original file line number Diff line number Diff line change 1
- import { Footer } from '@/app/( foundation) /components/Footer'
2
- import { Header } from '@/app/( foundation) /components/Header'
1
+ import { Footer } from '@/app/foundation/components/Footer'
2
+ import { Header } from '@/app/foundation/components/Header'
3
3
4
4
export function Layout ( {
5
5
children,
File renamed without changes.
Original file line number Diff line number Diff line change 1
- import { Button } from '@/app/( foundation) /components/Button'
2
- import { Container } from '@/app/( foundation) /components/Container'
1
+ import { Button } from '@/app/foundation/components/Button'
2
+ import { Container } from '@/app/foundation/components/Container'
3
3
4
4
function ArrowRightIcon ( props : React . ComponentPropsWithoutRef < 'svg' > ) {
5
5
return (
Original file line number Diff line number Diff line change 1
1
'use client'
2
2
3
- import { BackgroundImage } from '@/app/( foundation) /components/BackgroundImage'
4
- import { Button } from '@/app/( foundation) /components/Button'
5
- import { Container } from '@/app/( foundation) /components/Container'
3
+ import { BackgroundImage } from '@/app/foundation/components/BackgroundImage'
4
+ import { Button } from '@/app/foundation/components/Button'
5
+ import { Container } from '@/app/foundation/components/Container'
6
6
import { IconChevronRight } from '@tabler/icons-react'
7
7
8
8
interface Day {
Original file line number Diff line number Diff line change 1
1
'use client'
2
2
3
- import { Button } from '@/app/( foundation) /components/Button'
4
- import { Container } from '@/app/( foundation) /components/Container'
3
+ import { Button } from '@/app/foundation/components/Button'
4
+ import { Container } from '@/app/foundation/components/Container'
5
5
6
6
export function Schedule ( ) {
7
7
return (
Original file line number Diff line number Diff line change 1
1
import Image from 'next/image'
2
2
3
- import { Container } from '@/app/( foundation) /components/Container'
3
+ import { Container } from '@/app/foundation/components/Container'
4
4
5
5
const sponsors = [
6
6
{
Original file line number Diff line number Diff line change 1
- import { Layout } from '@/app/( foundation) /components/Layout'
1
+ import { Layout } from '@/app/foundation/components/Layout'
2
2
3
3
export default function MainLayout ( {
4
4
children,
Original file line number Diff line number Diff line change
1
+ import { Hero } from '@/app/foundation/components/Hero'
2
+ import { Newsletter } from '@/app/foundation/components/Newsletter'
3
+ import { Projects } from '@/app/foundation/components/Projects'
4
+ import { Schedule } from '@/app/foundation/components/Schedule'
5
+ import { Sponsors } from '@/app/foundation/components/Sponsors'
6
+
7
+ export default function Home ( ) {
8
+ return (
9
+ < >
10
+ < Hero />
11
+ < Schedule />
12
+ < Projects />
13
+ < Sponsors />
14
+ < Newsletter />
15
+ </ >
16
+ )
17
+ }
Original file line number Diff line number Diff line change 1
- import { BackgroundImage } from '@/app/( foundation) /components/BackgroundImage'
2
- import { Button } from '@/app/( foundation) /components/Button'
3
- import { Container } from '@/app/( foundation) /components/Container'
4
- import { Layout } from '@/app/( foundation) /components/Layout'
1
+ import { BackgroundImage } from '@/app/foundation/components/BackgroundImage'
2
+ import { Button } from '@/app/foundation/components/Button'
3
+ import { Container } from '@/app/foundation/components/Container'
4
+ import { Layout } from '@/app/foundation/components/Layout'
5
5
6
6
export default function NotFound ( ) {
7
7
return (
You can’t perform that action at this time.
0 commit comments