struct Link: View {
var body: some View {
VStack {
Text("https://www.naver.com")
Link(destination: URL(string: "https://www.bigmountainstudio.com")!) {
VStack {
Image(systemName: "flame")
Text("Big Mountain Studio")
}
.foregroundColor(.white)
.padding()
.background(Capsule().shadow(radius: 10, y: 20))
}
.accentColor(.green)
.padding()
}
.font(.title)
}
}
