10 lines
392 B
JavaScript
10 lines
392 B
JavaScript
|
// GoKit Images
|
||
|
import first from '@/public/images/gokit_front.jpg'
|
||
|
import second from '@/public/images/gokit_shelf.jpg'
|
||
|
import third from '@/public/images/gokit_shelf2.jpg'
|
||
|
|
||
|
export const images = [
|
||
|
{ src: first, alt: 'Front of GoKit (In Progress)' },
|
||
|
{ src: second, alt: 'Bottom Shelf with uBITX, computer and antenna' },
|
||
|
{ src: third, alt: 'Bottom Shelf showing computer mounted' },
|
||
|
]
|